1 Star 0 Fork 0

LITIANYU/study201901

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
serv.js 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
Litianyu 提交于 2021-10-10 16:34 . --
'use strict'
const titbit = require('titbit')
const {cookie,session} = require('titbit-toolkit')
const token = require('titbit-token')
let tok = new token({
//token有效期
expires:30,
//必须是32位字母和数字
key:'123456abcdefghigklmnopqrstuvwxyz',
//必须是16位字母数字
iv:'123456abcdefghig'
})
const app = new titbit({
debug : true
})
app.use(new cookie).use(new session)
app.use(async(c,next)=>{
c.setHeader('x-test-key',`${Math.random()}`)
await next()
})
app.use(async (c,next) => {
if (c.query.say === '12345') {
await next()
}else{
c.status(403).send('deny')
}
},{name: ['home'],method:['GET']})
app.get('/',async c => {
c.send('ok')
}, {name: 'home',group:'home'})
app.get('/test',async c => {
c.send('test is ok')
})
/*
app.get('/:x/:y',async c =>{
c.setSession('x',c.param.x)
c.setSession('y',c.param.y)
c.send(c.getSession())
})*/
app.get('/token',async c => {
let tk = tok.make({
id:'123',
user:'node',
level:12
})
c.send(tk)
})
app.get('/decrypt/:token',async c =>{
c.send(tok.verify(c.param.token))
})
app.run(1235)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sjzlitianyu/study201901.git
git@gitee.com:sjzlitianyu/study201901.git
sjzlitianyu
study201901
study201901
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385