This project is used to scrap Bank Mega Promotions website.
This project has been tested with Node.JS 8.
Install node_modules package using:
$ npm install
or
$ yarn install
- To avoid Error: read ECONNRESET, set this value so every request can be delayed and repeated
const MILLISECONDS_WAITING = 1000
const MAXIMUM_RETRIES = 4
- Run via ts-node
$ ts-node src/solution.ts
- Or, build and run via node
$ yarn build
or
$ npm run-scripts build
$ node build/src/solution.js
$ yarn test
or
$ npm run-scripts test
- rxjs
- rx-http-requests
- jest