Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a Express-style nested router for Koa.js?

Is there exist a library that provides Express-style nesting routers? Something like this:

var koa = require('koa');
var app = koa();
var Router = require('???');

var restApiRouter = Router();
restApiRouter.get('/', function*() {
  // respond to /api/
});
restApiRouter.get('/messages', function*() {
  // respond to /api/messages
});

var appRouter = new Router();
appRouter.get('/', function*() {
  // respond to /
});
// redirects all /api/* requests to restApiRouter
appRouter.use('/api', restApiRouter);

app.use(appRouter);

If there isn't, what is the best practice to incapsulate common path routes in other files?

like image 760
Lesha K Avatar asked Sep 29 '22 07:09

Lesha K


2 Answers

Previous answer didn't show exactly how to nest routers. Here is a real-world example, splitted in several controller files.

First, we define some API routes into a controllers/api/foo.js file:

var router = require('koa-router')();

router.get('/', function* () {
    // Return a list of foos
});

router.get('/:id', function* () {
    // Return a specific foo
});

module.exports = router;

Then, on your application router, you can embed it like the following, in a file controllers/index.js:

var router = require('koa-router')();

// Create a new route
router.get('/', function* () {
    this.body = 'Home page';
});

// Nest previous API route
router.get('/api/foo', require('./api/foo').routes());

module.exports = router;

Finally, just use the router into your application index.js:

var koa = require('koa');
var app = koa();
app.use(require('./controllers').routes());
app.listen(process.env.PORT || 3000);
like image 66
Jonathan Petitcolas Avatar answered Oct 10 '22 10:10

Jonathan Petitcolas


Well, maybe not exactly as you expect, but, in my experience, koa-router does that job.

I don't have right now any tested code, but it should look like this

main.js

    var app = require('koa')()
    var port = 8080
    var http = require('http')
    var server = http.createServer(app.callback())
    // Import your main Router
    var mainRouter = require('/app/routes/root')

    //and use its routes and methods
    app.use( mainRouter.routes())
    app.use( mainRouter.allowedMethods())

    server.listen(port, function(){
      console.log ('Listening on port %d, App Ready',port)
    })
 

The Main router definition

/app/routes/root.js

"use strict;"

var router = require('koa-router')();

router.redirect('/', 'index.html')

router.get('/*.html', *blahblah())
 // returns any html on root

// define your admin router here
var adminRouter = require(appRoot+'/app/routes/admin')

// ..and import it into current router
router.use(adminRouter.routes() )
router.use(adminRouter.allowedMethods() )

//  at the end, export myself
module.exports = router

And finally, the Admin section router

/app/routes/admin.js

"use strict;"

// define router here, adding a prefix
var router = require('koa-router')().prefix('/admin/');
// redirect if no file specified
router.redirect('/', 'index.html')

router.get('*.html', function *(next){
    //do your own work
    this.body = something
})

// add More Routes, if needed
router.get('api.html', function *(next){
    if (this.query['status'])
       this.body = statusObject
  
})

// and finally export it
module.exports = router

NOTE: All of the above isn't directly runnable code. It's only a conceptual example

Also note that you can use tons of koa-middleware ( or even write your own: it's not that hard) that maybe could affect koa-router behaviour

like image 1
mtsdev Avatar answered Oct 10 '22 11:10

mtsdev