一、文件夹初始为npm仓库
cnpm i koa koa-router -S
下载完毕后会下载node_moudle包
二、安装依赖
cnpm i koa koa-router -S
下载完毕后会下载node_moudle包
三、实现hello world 启动服务
nodemon index.js
//1、导入koa这个模块
const koa = require("koa");
//2、新建一个应用
const app = new koa();
//3、给前端返回值
app.use(async ctx => {
ctx.body = "hello world"
})
//3、app监听8080
app.listen(8080);
四、在浏览器中查看
http://localhost:8080/