0.1.9 • Published 7 years ago

cottage-barney v0.1.9

Weekly downloads
2
License
-
Repository
github
Last release
7 years ago

Decription

Cottage-Barney is a restful api router made with therne/cottage. this router support middleware, HTTP status, URI param, and etc..

Get started

Installation

$ npm install --save cottage-barney

Example

const cottage = require('cottage');
const Router = require('cottage-barney');

const app = cottage();
const router = new Router(app);

class Index {
    // this.params => URI params object like '/:id'
    // this.query => GET query object
    // this.req => koa.Request
    // this.req.body => Body object
    // this.res => koa.Response

    get() {
        // Do something!
        this.res.status = Router.status.OK; // We're support http status code's with 'david/http-status'
        return 'GET METHOD';
    }
    post() {
        // Do something!
        return 'POST METHOD';
    }
    delete() {
        // Do something!
        return 'DELETE METHOD';
    }
}

router.set('/', new Index());
router.set('/what/:id', new Index()); // barney also support uri param

app.listen(8080);

Middleware Usage

const cottage = require('cottage');
const Router = require('cottage-barney');

const app = cottage();
const router = new Router(app);

const middleware = function(router) { // 1 argument is required
    router.res["status"] = Router.status.CREATED; // You can handling resposne, request, params, query
};

router.use(middleware);
router.set('/', new Route());

/*
Middleware can use with children.
router.set('', {}, [
    {
        path: '/',
        route: new Route(),
        middlewares: [
            function(route) {
                // You can use middleware like this
                console.log("This is index!");
            }
        ]
    }
]);
 */

app.listen(8080);

Documentations

  • API Documentation TBA
  • Samples TBA

License : MIT

0.1.9

7 years ago

0.1.8

7 years ago

0.1.7

7 years ago

0.1.6

7 years ago

0.1.5-C

7 years ago

0.1.5-B

7 years ago

0.1.5

7 years ago

0.1.4

7 years ago

0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago