obedient

0.0.9 • Public • Published

Obedient - Minimal http framework with nothing but middleware.

Install: npm install obedient


app.get():

app.get(route, callback)

Connect style routing for GET http methods. Missing routes will throw a 404.

app.post():

app.post(route, callback)

Connect style routing for POST http methods. Missing routes will throw a 404.

app.put():

app.put(route, callback)

Connect style routing for PUT http methods. Missing routes will throw a 404.

app.delete():

app.delete(route, callback)

Connect style routing for DELETE http methods. Missing routes will throw a 404.

app.listen():

app.listen(port)

Port for server to listen on.

app.use():

app.use(route, middleware)

Connect style middleware. route is an optional field. If set, the middleware will be mounted at that particular route and the prefix will be ignored. So /public/example.js would be treated as /example.js and the middleware would only be run if URL started with /public.

Deps:

Router documentation: https://github.com/aaronblohowiak/routes.js


Examples:

View the examples


Tests

npm test

Build Status

Readme

Keywords

none

Package Sidebar

Install

npm i obedient

Weekly Downloads

1

Version

0.0.9

License

none

Last publish

Collaborators

  • bradleyg