React.js hooks + koa.js 风格的轻量级 web 框架。
koa-hooks requires node v10 or higher for ES2015 and async function support.
$ npm install @zhengxs/koa-hooks --save
hello,world
import { use, listen } from '@zhengxs/koa-hooks'
use(async ctx => {
ctx.body = `hello,world`
})
listen(8080, () => {
console.log('Liston http://127.0.0.1:8080')
})
路由匹配 和 重定向
import { Server } from 'http'
import { use, route, redirect, urlFor, listen } from '@zhengxs/koa-hooks'
route('product.detail', '/api/product/:id', ctx => {
ctx.status = 200
ctx.type = 'application/json'
ctx.body = ctx.params
})
route('/api/user/info', () => {
console.log('用户未登陆,跳转到登陆页')
redirect(urlFor('login'))
})
route('login', '/login', ctx => {
ctx.body = 'This login page.'
})
use(ctx => {
ctx.body = `hello,world`
})
listen(8080, function onReady(this: Server) {
console.log('Liston http://127.0.0.1:8080')
})
# 更新版本号,内置代码检查
$ npm version <new_version|major|minor|patch>
# 发布代码包,自动代码
$ npm publish
可使用 npm version --help
查看帮助信息
感谢这些开源贡献给予的灵感,以下排名不分先后。
Generated using TypeDoc