📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP
Socket
Sign inDemoInstall
Socket

koa-controller-router

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

koa-controller-router

> Router middleware extended from [koa-router](https://github.com/alexmingoia/koa-router) for [koa 1.x](https://github.com/koajs/koa/tree/v1.x)

0.0.4
Source
npm
Version published
Weekly downloads
6
-50%
Maintainers
1
Weekly downloads
 
Created
Source

koa-controller-router

Router middleware extended from koa-router for koa 1.x

Installation

Install using npm:

npm install koa-controller-router

Usage example

Create controller

// app/controllers/ArticleController.js

class ArticleController {
    *list() {
        // some code
    }
    
    *show() {
        // some code
    }
    
    *create() {
        // some code
    }

    *update() {
        // some code
    }

    *destroy() {
        // some code
    }
}

module.exports = ArticleController;

Create routes

// index.js
const path = require('path');
const Koa = require('koa');
const Router = require('koa-controller-router');

const app = new Koa();
const router = new Router({
  controllersPath: path.resolve(__dirname, 'app', 'controllers') // default value is /path/to/project/controllers/
});

const authMiddleware = function *(next) {
    // auth check
    
    yield next;
};

const isAdminMiddleware = function *(next) {
    // check user role
    
    yield next;
};

router.get('/', function *() {
    // some code
});

router.get('/api/v1/articles', 'ArticleController@list');
router.get('/api/v1/articles/:id', 'ArticleController@show');
router.post('/api/v1/articles', authMiddleware, 'ArticleController@create');
router.put('/api/v1/articles/:id', authMiddleware, 'ArticleController@update');
router.patch('/api/v1/articles/:id', authMiddleware, 'ArticleController@update');
router.del('/api/v1/articles', authMiddleware, isAdminMiddleware, 'ArticleController@destroy');

app.use(router.routes());
app.use(router.allowedMethods());

app.listen(3000);

Licence

MIT

Keywords

koa

FAQs

Package last updated on 30 Mar 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts