-
Notifications
You must be signed in to change notification settings - Fork 174
/
Copy pathapp.js
25 lines (19 loc) · 909 Bytes
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
const express = require('express');
const bodyParser = require('body-parser');
const { createOrderHeaderCsvContent, createOrderLineItemsCsvContent, createProductInformationCsvContent, generateOrders, sendBatch } = require('./services/csvService');
const app = express();
app.use(bodyParser.json());
(async () => {
while (true) {
let orders = generateOrders();
// Generate the CSV content
const orderHeaderCsv = createOrderHeaderCsvContent(orders);
const lineItemsCsv = createOrderLineItemsCsvContent(orders);
const productInfoCsv = createProductInformationCsvContent(orders);
console.log("sending a batch...");
sendBatch(orderHeaderCsv, lineItemsCsv, productInfoCsv);
await new Promise(r => setTimeout(r, 60000));
}
})();
const port = 3003;
app.listen(port, () => console.log(`Batch Generator listening on port ${port}!`));