typeservice / koa

It is a KOA-based service architecture that is fully compatible with all KOA ecosystems.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

@typeservice/koa

codecov

It is a KOA-based service architecture that is fully compatible with all KOA ecosystems, while providing dynamic Agent assistance processes and IPC communication mechanisms.

Installing

For the latest stable version:

$ npm install @typeservice/koa

Usage

import Koa, { Context } from '@typeservice/koa';
interface CustomContext extends Context {
  abc: number
}
const app = new Koa<any, CustomContext>(9000);
app.use(async (ctx, next) => {
  ctx.abc = 789;
  await next();
});
app.use(async (ctx, next) => {
  ctx.body = 'hello world, ' + ctx.abc;
  await next();
});
app.httpBootstrap();
app.listen();

You also can user messager

const app = new Koa(9000);
app.use(async (ctx, next) => {
  ctx.abc = await ctx.messager.invoke('xxxx', 'xxxx', 'xxxx');
  await next();
});
app.httpBootstrap();
app.listen();

License

MIT

Copyright (c) 2019-present, yunjie (Evio) shen

About

It is a KOA-based service architecture that is fully compatible with all KOA ecosystems.


Languages

Language:TypeScript 92.9%Language:JavaScript 7.1%