0.0.0 • Published 9 years ago

nutrikoa v0.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

nutrikoa

Build Status Code GPA Test Coverage Dependency Status NPM version

Ever wanted to have a complete nodejs infrastructure, but you are too lazy (or unable) to do it? Fine, I did it for you!!!

Nutrikoa has everything you ever wanted from a nodejs infrastructure:

  • it is based on koa, with all the last es6 beauties
  • it has a lot of interesting things that take care of headers, cache, "prettyfication" and so on
  • it's built with production in mind, so it is stateless and scalable

Installation

npm install nutrikoa

then you use it exactly as you'd use koa

var nutrikoa = require('nutrikoa');
var app = nutrikoa();

...

app.listen();