1 Star 0 Fork 0

zenking/NiceFish-BackEnd

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
app.js 1.55 KB
一键复制 编辑 原始数据 按行查看 历史
zhang.xiaofei10 提交于 2016-11-28 20:17 . 重构目录和代码结构;
var express = require('express');
var path = require('path');
var favicon = require('serve-favicon');
var logger = require('morgan');
var cookieParser = require('cookie-parser');
var bodyParser = require('body-parser');
var index = require('./actions/index');
var users = require('./actions/users');
//连接mongodb
var mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/ngcommunity');
var db = mongoose.connection;
db.on('error', console.error.bind(console, '数据库连接错误:'));
db.once('open', function() {
console.log("数据库连接成功...");
// console.log(db);
});
var app = express();
// view engine setup
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'jade');
// uncomment after placing your favicon in /public
//app.use(favicon(path.join(__dirname, 'public', 'favicon.ico')));
app.use(logger('dev'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'public')));
app.use('/', index);
app.use('/users', users);
// catch 404 and forward to error handler
app.use(function(req, res, next) {
var err = new Error('Not Found');
err.status = 404;
next(err);
});
// error handler
app.use(function(err, req, res, next) {
// set locals, only providing error in development
res.locals.message = err.message;
res.locals.error = req.app.get('env') === 'development' ? err : {};
// render the error page
res.status(err.status || 500);
res.render('error');
});
module.exports = app;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
NodeJS
1
https://gitee.com/whatsmax/NiceFish-BackEnd.git
git@gitee.com:whatsmax/NiceFish-BackEnd.git
whatsmax
NiceFish-BackEnd
NiceFish-BackEnd
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385