1 Star 1 Fork 0

SING890925/node_app

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
server.js 995 Bytes
一键复制 编辑 原始数据 按行查看 历史
/**
* Created by Administrator on 2019/3/14.
*/
const express = require("express");
const mongoose = require("mongoose");
const passport = require("passport");
const bodyParser = require("body-parser");
const app = express();
// 引入users.js
const users = require("./routes/api/users");
const profiles = require('./routes/api/profiles');
//DB config
const db = require("./config/keys").mongoURI;
// 使用body-parser中间件
app.use(bodyParser.urlencoded({extended:false}));
app.use(bodyParser.json());
// passport初始化
app.use(passport.initialize());
require("./config/passport")(passport);
//Connect to mongodb
mongoose.connect(db).then(()=> console.log("MongoDB Connected")).catch(err => console.log(err));
// app.get("/",(req,res) =>{
// res.send("hello world!!");
// })
// 使用routes
app.use("/api/users",users);
app.use("/api/profiles",profiles);
const port = process.env.PORT || 9000;
app.listen(port, () => {
console.log(`Server running on port ${port}`);
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/renpingsheng/node_app.git
git@gitee.com:renpingsheng/node_app.git
renpingsheng
node_app
node_app
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385