simple-cloudbase-router
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

simple-cloudbase-router

像写 koa 一样来写 微信云函数

Install

yarn add simple-cloudbase-router@latest
# or
npm i simple-cloudbase-router@latest

Usage

Typescript/ESM (with simple-cloudbase)

完整见examples/modern

// app.ts
import { cloud } from '~/common/tcb'
import { compose, createServe } from 'simple-cloudbase-router'
import type { ICustomContext } from './type'
import { commonRouter } from './routers'

const fn = compose<ICustomContext>([
  async (ctx, next) => {
    ctx.cloud = cloud
    ctx.wxContext = cloud.getWXContext()
    await next()
  },
  commonRouter
])

export const serve = createServe(fn)
// index.ts
import { serve } from './app'
export async function main (event: any, content: any) {
  return await serve(event, content)
}

Commonjs(Raw)

完整见examples/raw

// app.js
const cloud = require('wx-server-sdk')
cloud.init({
  env: cloud.DYNAMIC_CURRENT_ENV
})
const { compose, createServe } = require('simple-cloudbase-router')

const commonRoute = require('./routers/common')

const fn = compose([
  async (ctx, next) => {
    ctx.cloud = cloud
    ctx.wxContext = cloud.getWXContext()
    await next()
  },
  commonRoute
])
const serve = createServe(fn)
module.exports = {
  serve
}
// index.js
const app = require('./app')

exports.main = async (event, context) => {
  return await app.serve(event, context)
}

Readme

Keywords

none

Package Sidebar

Install

npm i simple-cloudbase-router

Weekly Downloads

4

Version

1.0.2

License

MIT

Unpacked Size

30.8 kB

Total Files

16

Last publish

Collaborators

  • icebreaker