koa的基本使用
Posted 忘れられたくない
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了koa的基本使用相关的知识,希望对你有一定的参考价值。
1、初始化package.json
npm init
2、安装koa2
npm install koa
3、hello代码
ctx.body="hello"
必须写,否则页面出现Not Found
const koa =require(\'koa\')
const app = new koa()
app.use(async (ctx)=>{
ctx.body="hello"
})
app.listen(3000)
4、代码运行
修改代码时,必须重新运行index.js
为需要运行的文件
node index.js
5、koa-static静态资源加载
首先安装koa-static
插件npm install koa-static
const Koa = require(\'koa\')
const path = require(\'path\')
const static = require(\'koa-static\')
const app = new Koa()
// 静态资源目录对于相对入口文件index.js的路径
const staticPath = \'./static\'
app.use(static(
path.join( __dirname, staticPath)
))
app.use( async ( ctx ) => {
ctx.body = \'hello world\'
})
app.listen(3000, () => {
console.log(\'[demo] static-use-middleware is starting at port 3000\')
})
以上是关于koa的基本使用的主要内容,如果未能解决你的问题,请参考以下文章