码迷,mamicode.com
首页 > 其他好文 > 详细

node 基础

时间:2016-06-05 01:07:43      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

为什么学习Node,因为他的门槛比较高一点,现在比较热门一点。

技术这种东西,用最短的时间学会了收益终身。

1.常用的中间件:

// 通用的中间件
app.use(require(‘response-time‘)());
app.use(helmet.frameguard(‘sameorigin‘));
app.use(bodyParser.json({limit: ‘1mb‘}));
app.use(bodyParser.urlencoded({ extended: true, limit: ‘1mb‘ }));
app.use(require(‘method-override‘)());
app.use(require(‘cookie-parser‘)(config.session_secret));
app.use(compress());
app.use(session({
secret: config.session_secret,
store: new RedisStore({
port: config.redis_port,
host: config.redis_host,
}),
resave: true,
saveUninitialized: true,
}));

2.

node 基础

标签:

原文地址:http://www.cnblogs.com/coding4/p/5559909.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!