Docs fixes

This commit is contained in:
nicco 2017-08-21 00:24:07 +02:00
parent 5638465101
commit 0eb643f5da
2 changed files with 10 additions and 10 deletions

View File

@ -9,12 +9,12 @@ const
const
app = new Koa(),
port = 3001
port = 3000
app.use(router(_ => {
_.get('/user/:user/', (c, n) => {
c.body = c.request.param['user']
// GET /user/foo/ => 'foo'
_.get('/user/:user', (c, n) => {
c.body = c.request.params['user']
// GET /user/foo => 'foo'
})
}))
@ -56,7 +56,7 @@ app.listen(port)
// 1
app.use(router(_ => {
_.get('/mypath', (c, n) => {
// GET /mypath
// GET /mypath
c.body = 'Some Response'
})
}))
@ -64,18 +64,18 @@ app.use(router(_ => {
// 2
app.use(router('/myprefix', _ => {
_.get('/mypath', (c, n) => {
// GET /myprefix/mypath
// GET /myprefix/mypath
c.body = 'Some Response'
})
}))
// 3
app.use(router({
prefix: '/myprefix',
case: true
prefix: '/myprefix',
case: true
}, _ => {
_.get('/myPath', (c, n) => {
// GET /myprefix/myPath
// GET /myprefix/myPath
c.body = 'Some Response'
})
}))

View File

@ -1,6 +1,6 @@
{
"name": "cca-koa-router",
"version": "0.1.1",
"version": "0.1.2",
"description": "Koa Router",
"main": "Router.js",
"repository": {