Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/apal21/express-babel-boilerplate

Minimal Production ready Express.js Babel(ES6+) boilerplate with ESLint Airbnb setup and pre commit hooks and also example routes and tests using Mocha and Supertest
https://github.com/apal21/express-babel-boilerplate

babel babel7 backend boilerplate eslint eslint-config-airbnb express expressjs husky mocha production supertest

Last synced: about 3 hours ago
JSON representation

Minimal Production ready Express.js Babel(ES6+) boilerplate with ESLint Airbnb setup and pre commit hooks and also example routes and tests using Mocha and Supertest

Awesome Lists containing this project

README

        

# Express Babel Minimal Production Boilerplate
Express.js boilerplate which includes:

* Modern Javascript using Babel (ES6+)
* ESLint Airbnb configuration
* ESLint pre-commit hook using husky.
* Basic test cases using Mocha and Supertest. Test using: `npm run test`

### Example Routes
* User CRUD routes:
* `GET` `/users`
* `POST` `/users`
* `GET` `/users/:id`
* `PUT` `/users/:id`
* `DELETE` `/users/:id`