A simple Koa 2 boilerplate for API's using ES6.
- Routing with koa-router.
- Parsing request with koa-bodyparser.
- CORS middleware with @koa/cors.
- koa-respond for helper functions on the context.
- koa-helmet for important security headers.
- nodemon for development to auto-restart when your files change.
- dotenv for environment variable management.
git clone https://github.com/dbalas/koalerplate.git
cd koalerplate
mv .env.sample .env
npm run dev // or yarn dev
By default the API server starts on port 3000, http://localhost:3000.
- node >= v7.6.0
Feel free to submit pull request or suggestions here
We use SemVer for versioning. For the versions available, see the tags on this repository.
- Daniel Balastegui - Initial work - dbalas
This project is licensed under the MIT License - see the LICENSE.md file for details