Simple ExpressJS app boilerplate.
- Development and production scripts,
- Babel integration,
- Bunyan logger,
- Heroku deployment support,
- Airbnb's ESLint config.
npm install --dev
npm run dev
open http://localhost:3000/
# Build
npm install --dev
npm run build
npm prune --production
# Run
NODE_ENV=production npm start
heroku create
git push heroku master
heroku open
MIT