Socket
Socket
Sign inDemoInstall

express-session

Package Overview
Dependencies
Maintainers
1
Versions
64
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

express-session

Simple session middleware for Express


Version published
Weekly downloads
1.5M
decreased by-2.59%
Maintainers
1
Weekly downloads
 
Created

What is express-session?

The express-session npm package is a middleware for Express applications that enables server-side session management. It allows you to store and access user data as they interact with your web application. The package creates a session ID for each client and uses it to store data across multiple HTTP requests.

What are express-session's main functionalities?

Session Initialization

This code initializes the express-session middleware with a secret to sign the session ID cookie, and configuration options such as 'resave', 'saveUninitialized', and 'cookie' settings.

const express = require('express');
const session = require('express-session');

const app = express();

app.use(session({
  secret: 'keyboard cat',
  resave: false,
  saveUninitialized: true,
  cookie: { secure: true }
}));

Storing Session Data

This code demonstrates how to store data in the session object. The value 'This is saved in session' is stored under the key 'myValue' in the session.

app.use(session({ /* ... */ }));

app.get('/save', function(req, res) {
  // Save a value to the session
  req.session.myValue = 'This is saved in session';
  res.send('Session value stored.');
});

Retrieving Session Data

This code shows how to retrieve data from the session. It accesses the value stored under the key 'myValue' and sends it in the HTTP response.

app.get('/retrieve', function(req, res) {
  // Retrieve a value from the session
  const myValue = req.session.myValue;
  res.send(`Session value: ${myValue}`);
});

Destroying a Session

This code provides an example of how to destroy a session, effectively logging out the user. It handles any errors that might occur during the destruction process.

app.get('/logout', function(req, res) {
  // Destroy the session
  req.session.destroy(function(err) {
    if(err) {
      return res.send('Error destroying session');
    }
    res.send('Session destroyed');
  });
});

Other packages similar to express-session

FAQs

Package last updated on 11 May 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc