circe-jwt
TypeScript icon, indicating that this package has built-in type declarations

0.0.4 • Public • Published

circe-jwt JWT处理

安装

NPM

使用

import * as Koa from 'koa'
import * as JWT from 'circe-jwt'
import jwt from 'circe-jwt'
 
const app = new Koa()
 
app.use(
  jwt({secret: 'JSON_WEB_TOKEN_SECRET'})
    .unless({paths: [/^\/public/]})
)
 
app.use((async (ctx) => {
  // ctx.state.user
  // JWT.sign()
  // JWT.verify()
  // JWT.decode()
}))

参数

  • secret: string
  • key?: string

Readme

Keywords

none

Package Sidebar

Install

npm i circe-jwt

Weekly Downloads

0

Version

0.0.4

License

MIT

Last publish

Collaborators

  • sikichan2
  • varharrie