1 Star 0 Fork 12

中星智慧社区 / 物业管理后台Server

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.js 456 Bytes
一键复制 编辑 原始数据 按行查看 历史
奔跑的面条 提交于 2019-09-17 21:34 . No commit message
const express = require('express')
const app = express()
app.use(express.json())
app.use(require('cors')())//跨域模块
require('./plugins/db')(app)
require('./routes/admin')(app)
//全局设置返回登陆时候需要用到的密钥(自定义)
app.set('secret','i6gdh5a2u5i9sb51das4iud07hsi')
app.get('/', async (request, response) => {
response.send('服务器启动')
})
app.listen(3000, () => {
console.log("http://localhost:3000/");
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/zhongxing_smart_community/WuYeServer.git
git@gitee.com:zhongxing_smart_community/WuYeServer.git
zhongxing_smart_community
WuYeServer
物业管理后台Server
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891