1 Star 0 Fork 0

applosl / www.applosl.com

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
app.js 462 Bytes
一键复制 编辑 原始数据 按行查看 历史
applosl 提交于 2019-06-30 18:59 . style: web init
const Koa = require('koa2')
const render = require('koa-art-template')
const router = require('./router/router')
const path = require('path')
const process = require('process')
const app = new Koa();
render(app, {
root: path.join(__dirname, 'views'),
extname: '.html',
debug: process.env.NODE_ENV !== 'production'
});
// 调用路由中间件
app.use(router.routes())
app.listen(3000, ()=> {
console.log('server is running at http://localhost:3000')
});
NodeJS
1
https://gitee.com/applosl/www.applosl.com.git
git@gitee.com:applosl/www.applosl.com.git
applosl
www.applosl.com
www.applosl.com
master

搜索帮助