A Node.js based REST API using Express.
lint
Used to check to see if there are any errors in the code
npm run lint
start
Starts the server
npm start
dev
Used to run the server during development. Sets log level to "debug". Automatically monitors changes and restarts the server
npm run dev
debug
Used for debugging the server. Enables the Node.js debugger. Listens on all network interfaces (0.0.0.0) on port 9229.
npm run debug