- Run
npm installto install dependencies
- Run
npm run startto start the app - Open your browser on
http://localhost:3000/health
You must run the application on another port.
- Run
PORT=XXXX npm run startto start the app - Open your browser on
http://localhost:XXXX/health
- Run
npm run start:debugto start the app in debug mode - Press
F5to attach the vscode debugger to the node process
- Run
npm run testto start test suites - Open
coverage/index.htmlto see the tests code coverage information
- Run
npm run lintto see errors - Run
npm run lint:fixto automatically fix errors
- .vscode Visual Studio Code project configuration
- coverage Tests code coverage information
- node_modules Dependencies of the application
- src Sources of the application
- database Database access object
- routes Routes of the application
- services Services of the application
- app.js Application creation
- index.js Main of the application
- .babelrc Babel configuration file
- .eslintrc ESLint configuration file
- .gitignore List of files to exclude from git
- jest.config.js Jest configuration file
- package-lock.json Informations about dependencies automatically generated (do not modify by hand)
- package.json Project description
- rules.pdf Rules of Jaipur