1.0.5 • Published 4 years ago

@typeservice/koa v1.0.5

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

@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

1.0.5

4 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago