1.1.3 • Published 10 years ago

nekojs v1.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
10 years ago

NekoJS

node framework for building web applications.

Test coverage http://www.nekojs.co.uk/public/coverage/lcov-report/index.html.

$ npm install nekojs

requires node v4.0.0 or higher for (partial) ES2015 support.

Example:

var Neko = require('nekojs');
var app = new Neko();

app.get('/users/:id', (req, res) => {
  res.json({
    name: 'Bob'
  })
})

app.listen(p => {
  log.sys(`Started on ${p}`)
})

TODOS:

  • Fix the template rendering errors response/error log
  • Make the session middleware do something
  • Add middleware to deal with post data
  • Design better templating engine
  • Support more mime type for static file middleware
  • Support URL parameters

Authors

see AUTHORS.

License

MIT

1.1.3

10 years ago

1.1.2

10 years ago

1.1.1

10 years ago

1.1.0

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago