Nodejs学习(5)一个简单的koa2的示例

时间:2022-10-25 05:12:05

1、下载koa2

npm install --save koa@2.0.0

2、引入koa类

const Koa = require('koa');

创建Koa的实例

const app = new Koa();

3、使用创建的实例处理异步请求(use方法)

app.use(async (ctx, next) => {
ctx.response.type = 'text/html';
ctx.response.body = "<h1>hello world!</h1>";
await next();
})

4、监听端口

app.listen(3000);

源代码:

// 导入koa,和koa 1.x不同,在koa2中,我们导入的是一个class,因此用大写的Koa表示:
const Koa = require('koa');

// 创建一个Koa对象表示web app本身:
const app = new Koa();

// 对于任何请求,app将调用该异步函数处理请求:
app.use(async (ctx, next) => {
await next();
ctx.response.type = 'text/html';
ctx.response.body = '<h1>Hello, koa2!</h1>';
ctx.response.body = '<h1>Hello, koa2!</h1><ul><li>1</li><li>2</li></ul>';
});

// 在端口3000监听:
app.listen(3000);
console.log('app started at port 3000...');