Basic NodeJS rest API Template
ES6 code compiled via Babel
Code formatting via Prettier
airbnb code convention via eslint
Live Reload on development environment with nodemon
Please use this template as a base for your ES6 API projects so you have more time to drink coffee ☕️.
git clone https://github.com/kevinmora94/nodejs_api_template
cd nodejs_api_template
npm install
// Start on development environment
npm start
// Start on production
npm run prod
Have fun!
If you have any change/update request, please don't hesitate to contribute.
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -m 'feat(new-feature): my new feature code'
- Push to your feature branch:
git push origin my-new-feature
- Submit a pull request ❤️
MIT