Node.js 강좌 자료] express-session 미들웨어
Node.js 강좌 자료] express-session 미들웨어
실무개발자를위한 실무교육 전문교육센터학원
www.oraclejava.co.kr에 오시면 보다 다양한 강좌를 보실 수 있습니다.
express-session 미들웨어
- 서버 영역에 정보를 저장하는 기술
»외부 모듈이기 때문에 직접 설치해서 사용
$ npm install express-session
- 예제
var express = require('express');
var session = require('express-session');
var app = express();
app.use(session({
secret: 'secret key', resave: false, saveUninitialized: true, cookie: {
maxAge: 60 * 1000
}
}));
app.use(function (request, response) { request.session.now = (new Date()).toUTCString(); response.send(request.session);
});
app.listen(8081, function () {
console.log('Server running at http://127.0.0.1:8081');
});
'자바' 카테고리의 다른 글
Node.js 강좌 자료] connect-multiparty 미들웨어 (0) | 2017.12.03 |
---|---|
Node.js 강좌 자료] body-parser 미들웨어 (0) | 2017.12.03 |
Node.js 강좌 자료] cookie-parser 미들웨어 (0) | 2017.12.03 |
Node.js 강좌 자료] morgan 미들웨어 (0) | 2017.12.03 |
Node.js 강좌 자료] 정적 리소스 (static 미들웨어) (0) | 2017.12.03 |