1.0.1 • Published 6 years ago

xhc-auth v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
6 years ago

小红唇微信登陆验证模块

Install

Install with npm

npm install xhc-auth

用法

import { login } from 'xhc-auth'

const loginMiddleware = login({
    appid: Weixin.appid,
    baseURL: Sites.napi
})

router.get('/', loginMiddleware, async (ctx: BaseContext) => {
    ctx.status = 200
    await app.render(ctx.req, ctx.res, '/index', ctx.query)
    ctx.respond = false
})