
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
serverless-http
Advanced tools
This module allows you to 'wrap' your API for serverless use. No HTTP server, no ports or sockets. Just your code in the same execution pipeline you are already familiar with.
Note: v4.0.0 doesn't intentionally intorudce any breaking changes, but uses a PassThrough stream internally instead of a stub - however, this is a sensitive area, so in order to avoid unintentional breaks, a semver major version was used. You should hopefully not have to change anything, but test thoroughly please.
Thank you to Upstash for reaching out to sponsor this project!
(* Experimental)
:rocket: You can deploy your own hello world example using the Express framework to Genezio with one click:
Please check the examples folder!
const serverless = require('serverless-http');
const Koa = require('koa'); // or any supported framework
const app = new Koa();
app.use(/* register your middleware as normal */);
// this is it!
module.exports.handler = serverless(app);
// or as a promise
const handler = serverless(app);
module.exports.handler = async (event, context) => {
// you can do other things here
const result = await handler(event, context);
// and here
return result;
};
const serverless = require('serverless-http');
const express = require('express');
const app = express();
app.use(/* register your middleware as normal */);
const handler = serverless(app, { provider: 'azure' });
module.exports.funcName = async (context, req) => {
context.res = await handler(context, req);
}
json-server-less-λ - using serverless-http with json-server and serverless framework in AWS
Your code is running in a serverless environment. You cannot rely on your server being 'up' in the sense that you can/should not use in-memory sessions, web sockets, etc. You are also subject to provider specific restrictions on request/response size, duration, etc.
Think of this as a familiar way of expressing your app logic, not trying to make serverless do something it cannot.
Pull requests are welcome! Especially test scenarios for different situations and configurations.
Here are some more detailed examples and advanced configuration options as well as provider-specific documentation
aws-serverless-express is a similar package that allows you to run an Express.js application on AWS Lambda and Amazon API Gateway. It is specifically tailored for AWS services and provides optimizations for running Express applications in this environment. Compared to serverless-http, it is more AWS-centric and may not support other serverless platforms as seamlessly.
lambda-api is a lightweight web framework for AWS Lambda that provides a similar functionality to serverless-http but is designed specifically for Lambda. It offers a more minimalistic approach and is optimized for performance in the AWS Lambda environment. Unlike serverless-http, it does not support other web frameworks like Express or Koa.
middy is a middleware engine for AWS Lambda that allows you to create modular and reusable middleware for your Lambda functions. While it is not a direct replacement for serverless-http, it can be used to achieve similar goals by composing middleware to handle HTTP requests and responses. It provides a more flexible and modular approach compared to serverless-http.
FAQs
Use existing web application frameworks in serverless environments
The npm package serverless-http receives a total of 299,513 weekly downloads. As such, serverless-http popularity was classified as popular.
We found that serverless-http demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.