Configuration of Session and cookie module packages for node. JS Platform Express

Source: Internet
Author: User

Download two module packages first

Session Module Package: Used to keep the login status or to maintain session state, etc.

Install express-session--save-dev

Cookie Module Package: Used to parse cookies.

Install Cookie-parser--save-dev

This is then configured in App.js (which I mentioned in the configuration of node. js, which is the server master file):

var session = require ("express-session"); var cookie = require ("Cookie-parser"); App.configure (function() {    App.use (cookie ());    App.use (Session ({        "final",        "1234567",        10000},   //  Expiry time milliseconds is        true,        / / save time after each trigger        true       //  time after last trigger ));     });

The session and Cookie module package configuration for node. JS Platform Express

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.