Basic daily trends service to provide newspaper cover page quick review.
As a NODE JS project, this project contains a package.json file that manage dependencies.
To install those dependencies just run:
npm install
After run installation command, it is possible to run a basic instance of the service just running:
npm start
But this method is not recommended for production service with hight availability performance.
After run installation command, it is possible to run a development version of the project by runnig:
npm run startdev
This command use nodemon to watch file changes so, nodemon should be also installed.
npm install nodemon -g
The project contains a script to generate the documentation that can be generated by runnig:
npm run docs
As well as for the documentation, this project contain a command to perform testing tasks by typing:
npm test
This project requires NODE JS and MongoDB as structural dependencies.