A ridiculously simple starting point for a modern Node app, that is linted, formatted, compiled, and tested.
- Prettier
- ESLint (AirBnB base config)
- Mocha + Chai tests
- Babel transpilation
- Great CI Integration (all files must be formatted and linted before tests are run)
git clone git@github.com:ryanmcdermott/node-boilerplate.git
cd node-boilerplate
npm install
npm build
npm run lint
npm test
npm run fmt
npm start