UNPKG

lark

Version:

A node.js framework based on koa. Our goal is to build the best industrial node.js framework for high concurrency and high flow application.

10 lines (8 loc) 178 B
'use strict'; module.exports = (app) => { let configs = app.configs; return async (ctx, next) => { ctx.configs = configs; return await next(); }; };