roe-define-router

1.3.2 • Public • Published

Build Status Coverage

roe-define-router

This package is an utility tool to help generate route definitions of roe or egg

roe-define-router makes it quite easy to define

  • normal roe or egg routes
  • SSR pages routes (this features requires that app.next exists in which app is the instance of roe or egg, and app.next should be an instance of next server)
  • static files serving.

Install

$ npm i roe-define-router

Usage

app/router.js

const defineRouter = require('roe-define-router')
 
const routes = {
  routes: {
    '/say-hello': 'say.hello'
  },
 
  pages: {
    '/:lang': 'index'
  },
 
  static: {
    '/static': 'static'
  }
}
 
const config = {
  static: {
    root: '/path/to/project'
  }
}
 
module.exports = defineRouter(routes, config, app => {
  // manually set other route definitions
})

defineRouter(routes, config?, extra?)

  • routes.routes? config?.routes? routes and options of egg-define-router
  • routes.pages? routes?.pages? pages and config of egg-ssr-pages
  • routes.static? routes?.static? files and options of egg-serve-static
  • extra? Function(app, apply?) an extra router function
    • app RoeApplication | EggApplication the server instance
    • apply? Function(app) method to apply roe-define-router to the application.

Returns a roe/egg router function which accepts app as the only one parameter.

About extra

If the extra function only contains one parameter, the routes will be applied to the application before invoking extra.

module.exports = defineRouter(routes, config, app => {
  // `routes` has already been applied
})

If the function contains two parameters, then the second argument apply is the function to apply the routes, so that we need to manually invoke apply(app) to apply the routes what roe-define-router defined.

module.exports = defineRouter(routes, config, (app, apply) => {
  // do something with `app.router`
 
  // Don't forget this line below:
  apply(app)
 
  // do something with `app.router`
})

License

MIT

Package Sidebar

Install

npm i roe-define-router

Weekly Downloads

13

Version

1.3.2

License

MIT

Unpacked Size

7.41 kB

Total Files

6

Last publish

Collaborators

  • kael