
Product
Introducing Data Exports
Export Socket alert data to your own cloud storage in JSON, CSV, or Parquet, with flexible snapshot or incremental delivery.
express-http-context
Advanced tools
Get and set request-scoped context anywhere. This package is an unopinionated, zero-dependency, Express-idiomatic implementation of Node AsyncLocalStorage. It's a great place to store user state, claims from a JWT, request/correlation IDs, and any other request-scoped data.
Install: npm i express-http-context
Use the context middleware before the first middleware or handler that needs to have access to the context.
import express from 'express';
import * as httpContext from 'express-http-context';
const app = express();
app.use(httpContext.middleware);
// All code from here on has access to the same context for each request
Set values based on the incoming request:
// Example authentication middleware
app.use(async (req, res, next) => {
try {
// Get user from data on request
const bearer = req.get('Authorization');
const user = await userService.getUser(bearer);
// Add user to the request-scoped context
httpContext.set('user', user);
return next();
} catch (err) {
return next(err);
}
});
Get them from code that doesn't have access to the express req object:
import * as httpContext from 'express-http-context';
// Somewhere deep in the Todo Service
async function createTodoItem(title, content) {
// Get the user from the request-scoped context
const user = httpContext.get('user');
await db.insert({ title, content, userId: user.id });
}
npm install --save express-http-context@0npm install --save express-http-context@1Interesting in contributing? Take a look at the Contributing Guidlines
cls-hooked is a continuation-local storage package that provides a way to maintain context across asynchronous operations. It is more general-purpose compared to express-http-context and can be used outside of Express applications. However, it requires more setup to integrate with Express.
async-local-storage is a built-in Node.js module that provides an API for maintaining context across asynchronous operations. It is similar to cls-hooked but is part of the Node.js core. It offers a more standardized approach but may require additional boilerplate to use effectively with Express.
FAQs
Get and set request-scoped context anywhere
The npm package express-http-context receives a total of 270,618 weekly downloads. As such, express-http-context popularity was classified as popular.
We found that express-http-context demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Product
Export Socket alert data to your own cloud storage in JSON, CSV, or Parquet, with flexible snapshot or incremental delivery.

Research
/Security News
Bitwarden CLI 2026.4.0 was compromised in the Checkmarx supply chain campaign after attackers abused a GitHub Action in Bitwarden’s CI/CD pipeline.

Research
/Security News
Docker and Socket have uncovered malicious Checkmarx KICS images and suspicious code extension releases in a broader supply chain compromise.