Microservice structure based on DevMastery's video and Bob Martin's Clean Architecture
git clone
cd comments-api
npm i
Save .env.example
as .env
and then add your database.
Usually this is just: mongod
on the command line.
To run in production mode where code is transpiled by Babel into a dist
folder and run directly in node
:
npm start
To run in development mode where code is run by babel-node via nodemon and re-transpiled any time there is a change:
npm run dev