代码拉取完成,页面将自动刷新
'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)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。