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')
})

你可能感兴趣的:(node.jskoa.js)