Simple express boilerplate based off of express-generator. Includes eslint and prettier for linting/code formatting, nodemon for automatic server restarting, and Jest for testing.
npm install
npm run dev
npm start
Runs on localhost:3000 by default but can be configured using the PORT
environment variable.
npm test
# Watch repo
npm run test:watch
npm run lint
# fix issues
npm run lint:fix