js-review/server/index.js

12 lines
255 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Koa from 'koa'
import router from './router/index.js'
import logger from './middleeare/logger.js'
const app = new Koa()
app.use(logger())
app.use(router.routes());
app.listen(3001, ()=>{
console.log("服务器开启成功端口为3001");
})