加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.js 391 Bytes
一键复制 编辑 原始数据 按行查看 历史
橘子皮儿 提交于 2018-07-17 14:55 . first commit
import express from 'express';
import consign from 'consign';
const app = express();
consign({verbose : false})
.include("libs/config.js")
// .then("redis.js")
// .then("db.js")
// .include("service")
.then("libs/middlewares.js")
.include("routes")
.then("server.js")
.then("io.js")
.then("libs/boot.js")
.then('libs/errorhandler.js')
.into(app)
module.exports = app;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化