A Node.js app displaying stock prices and news about some companies.
Create environment variables as:
DATABASE_URL=mongodb://some_db_url
STOCK_PRICE_API_URL=http://some_stock_price_api
STORY_FEED_API_URL=http://some_story_feed_api
$ npm install
$ npm start
Your app should now be running on localhost:5000.
To automatically have the server restart after changes:
$ npm run develop
$ npm test
or individually;
$ npm run test:unit
$ npm run test:integration