Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/moajs/mount-koa-routes
mount-koa-routes = auto mount koajs routes with routes_folder_path
https://github.com/moajs/mount-koa-routes
Last synced: about 18 hours ago
JSON representation
mount-koa-routes = auto mount koajs routes with routes_folder_path
- Host: GitHub
- URL: https://github.com/moajs/mount-koa-routes
- Owner: moajs
- License: mit
- Created: 2015-12-06T09:33:22.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-07-15T03:11:50.000Z (over 6 years ago)
- Last Synced: 2024-09-24T22:28:35.922Z (about 2 months ago)
- Language: JavaScript
- Homepage: https://github.com/moajs/mount-koa-routes
- Size: 12.7 KB
- Stars: 18
- Watchers: 4
- Forks: 6
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mount-koa-routes
mount-koa-routes = auto mount koajs v2.x routes(base on koa-router) with routes_folder_path
[![gitter][gitter-image]][gitter-url]
[![NPM version][npm-image]][npm-url]## Install
npm install --save mount-koa-routes@next
## Usages
```
const Koa = require('koa');
const app = new Koa();const mount = require('./');
// simple
// mount(app);
// with path
mount(app, __dirname + '/routes2', true);// with path & api dump
// mount(app, __dirname + '/routes', true);app.on('error', function(err, ctx){
log.error('server error', err, ctx);
});app.listen(3000);
```### mount multi-dir with prefix
```
mount(app, __dirname + '/routes', true, '/bbb');
mount(app, __dirname + '/routes2', true, '/aaa');
```## Routes
```
var router = require('koa-router')();router.get('/', function (ctx, next) {
ctx.body = 'this /1!';
});router.get('2', function (ctx, next) {
ctx.body = 'this /2!';
});module.exports = router;
```一定要区分
```
url = /2
router.get('2', function (ctx, next) {
ctx.body = 'this /2!';
});
``````
url = //2
router.get('/2', function (ctx, next) {
ctx.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## 版本历史
- v2.0.0 init for koa v2.x
- v1.0.3 add api dump feature
- v1.0.2 rename index to /
- v1.0.0 初始化版本## 欢迎fork和反馈
- write by `i5ting` [email protected]
如有建议或意见,请在issue提问或邮件
## License
this repo is released under the [MIT
License](http://www.opensource.org/licenses/MIT).[npm-image]: https://img.shields.io/npm/v/mount-koa-routes.svg?style=flat-square
[npm-url]: https://npmjs.org/package/mount-koa-routes
[gitter-image]: https://badges.gitter.im/Join%20Chat.svg
[gitter-url]: https://gitter.im/i5ting/mount-koa-routes?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge