Skip to content

MicyToy/mount-koa-routes

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mount-koa-routes

mount-koa-routes = auto mount koajs routes(base on koa-router) with routes_folder_path

gitter NPM version

Install

npm install --save mount-koa-routes

Usages

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

var mount = require('mount-koa-routes');

// simple
mount(app);
// with path
// mount(app, __dirname + '/routes2');

// with path & api dump
// mount(app,  __dirname + '/routes', true);

app.on('error', function(err, ctx){
  log.error('server error', err, ctx);
});

app.listen(3000);

Routes

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

router.get('/', function *(next) {
  this.body = 'this /1!';
});


router.get('2', function *(next) {
  this.body = 'this /2!';
});

module.exports = router;

一定要区分

url = /2
router.get('2', function *(next) {
  this.body = 'this /2!';
});
url = //2
router.get('/2', function *(next) {
  this.body = 'this /2!';
});

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

版本历史

  • v1.0.3 add api dump feature
  • v1.0.2 rename index to /
  • v1.0.0 初始化版本

欢迎fork和反馈

如有建议或意见,请在issue提问或邮件

License

this repo is released under the MIT License.

About

mount-koa-routes = auto mount koajs routes with routes_folder_path

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%