本文整理汇总了TypeScript中koa.listen函数的典型用法代码示例。如果您正苦于以下问题:TypeScript listen函数的具体用法?TypeScript listen怎么用?TypeScript listen使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了listen函数的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: beforeAll
beforeAll((done)=> {
jasmine.DEFAULT_TIMEOUT_INTERVAL=1000;
const Koa = require('koa');
const busboy = new KoaBusBoy({
limits: {
fields: 1,
fileSize: 1
}
});
const app = new Koa();
app.use(busboy);
app.use((ctx: any)=> {
if (ctx.formData) {
ctx.body = ctx.formData;
} else {
ctx.body = 'hello world';
}
});
app.on('error', (error: Error, ctx: any)=> {
ctx.status = 400;
ctx.body = error.message;
});
app.listen(3001, ()=> {
done();
});
});
开发者ID:sqram,项目名称:koa-async-body,代码行数:31,代码来源:limit.spec.ts
示例2: it
it('response plain text in utf8', function (done) {
request(app.listen())
.get('/test')
.expect('Content-Type', 'text/plain; charset=utf-8')
.expect('hello')
.expect(200, done);
});
开发者ID:blai,项目名称:ts-router,代码行数:7,代码来源:utf8text.ts
示例3: it
it('response plain text', function (done) {
request(app.listen())
.put('/test')
.expect('Content-Type', 'text/plain')
.expect('hello')
.expect(200, done);
});
开发者ID:blai,项目名称:ts-router,代码行数:7,代码来源:put.ts
示例4: test
test('request index.html with root path', async (t) => {
const app = new Koa();
app.use(serve('../test/fixtures'));
const result = await request(app.listen())
.get('/')
t.is(result.res.statusCode, 200);
});
开发者ID:hellopao,项目名称:koa-statics,代码行数:9,代码来源:index.ts
示例5: createApp
function createApp(options: CreateAppOptions = {}) {
const app = new Koa();
const server = new ApolloServer(
(options.graphqlOptions as Config) || { schema: Schema },
);
server.applyMiddleware({ app });
return app.listen();
}
开发者ID:apollostack,项目名称:apollo-server,代码行数:9,代码来源:koaApollo.test.ts
示例6: start
public start() {
/* istanbul ignore if */
if (!process.env.PORT) {
throw new Error('Environment variable `PORT` not found, server cannot start on unknown port.');
}
this.app.listen(process.env.PORT);
logger.info(null, '[Server.start] Public storage ready at %s', settings.storagePublicUri());
logger.info(null, '[Server.start] Protected storage ready at %s', settings.storageProtectedUri());
logger.info(null, '[Server.start] API ready at %s', settings.apiExternalUri());
}
开发者ID:freezy,项目名称:node-vpdb,代码行数:10,代码来源:server.ts
示例7: it
it('works',(done)=>{
const app = new Koa();
let middleware : Koa.Middleware= (ctx:Koa.Context, next: Koa.Next)=>{
ctx.body = 'ok';
}
app.use(middleware);
supertest(app.listen()).get('/').expect(200, done);
})
开发者ID:D10221,项目名称:koa.d.ts,代码行数:13,代码来源:test.ts
示例8: createConnection
createConnection().then(async connection => {
// create koa app
const app = new Koa();
const router = new Router();
// register all application routes
AppRoutes.forEach(route => router[route.method](route.path, route.action));
// run app
app.use(bodyParser());
app.use(router.routes());
app.use(router.allowedMethods());
app.listen(3000);
console.log("Koa application is up and running on port 3000");
}).catch(error => console.log("TypeORM connection error: ", error));
开发者ID:willchapin,项目名称:typescript-koa-example,代码行数:18,代码来源:index.ts
注:本文中的koa.listen函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论