Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 292 Bytes

readme.md

File metadata and controls

18 lines (14 loc) · 292 Bytes

Wechat middleware for koa 2

install

npm install --save @alphatr/koa-wechat

how to use

app.use(wechat('token').middleware((ctx, next) => {
    const message = ctx.state.wechat;
    // do something

    ctx.body = 'response';
    return next();
});