npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

serverless-node-next

v3.41.0

Published

A community-maintained fork of the Serverless Framework v3 with support for newer AWS Lambda Node.js runtimes (up to nodejs24.x).

Readme

serverless-node-next

A community-maintained fork of the Serverless Framework v3, extended with support for newer AWS Lambda Node.js runtimes.

This project keeps the Serverless Framework on its v3 line while adding the AWS Lambda Node.js runtimes that were introduced after v3 stopped being actively developed. It exists for teams who want to keep deploying to current Node.js runtimes without migrating to Serverless Framework v4.

It tracks upstream [email protected] as its baseline and changes as little as possible on top of it.

  • Baseline: Serverless Framework v3.40.0
  • License: MIT (see Credits)
  • Not affiliated with or endorsed by Serverless, Inc.

Contents

What this fork changes

Compared to the pristine v3.40.0 baseline, this fork:

  • Adds newer AWS Lambda Node.js runtimes to the configuration schema (see below).
  • Rebrands the package to serverless-node-next with its own repository and maintainer.
  • Removes upstream-only governance and release tooling (Serverless Inc. contributor process, commit linting, release pipelines) that is not relevant to an independent fork.

Everything else — the CLI commands (serverless / sls), the serverless.yml schema, plugins, and provider behavior — is unchanged from v3. If you know Serverless Framework v3, you already know how to use this.

Node.js runtime support

This fork adds the following AWS Lambda runtimes to the v3 configuration schema:

  • nodejs22.x
  • nodejs24.x

These are in addition to the runtimes upstream v3 already supported (up to nodejs20.x). You select them the usual way in serverless.yml:

provider:
  name: aws
  runtime: nodejs22.x

or per function:

functions:
  hello:
    handler: handler.hello
    runtime: nodejs24.x

The default runtime is unchanged (nodejs16.x), so existing services behave exactly as they did on v3 unless you opt in to a newer runtime. serverless invoke local already works with these runtimes, since it detects any nodejs* runtime generically.

Installation

This fork is not published to npm under the serverless name. Install it directly from this repository.

Global install from GitHub:

npm install -g takuhii/serverless-node-next

Or clone and link for local development:

git clone https://github.com/takuhii/serverless-node-next.git
cd serverless-node-next
npm install
npm link   # exposes the `serverless` and `sls` commands globally

Requires Node.js >=12 (matching the v3 baseline). Both the serverless and sls commands are available.

Usage

Usage is identical to Serverless Framework v3.

Create a new service:

serverless

Deploy the whole service:

sls deploy

Deploy a single function quickly (skips a full CloudFormation update):

sls deploy function -f my-api

Invoke a deployed function, or run one locally:

sls invoke -f hello --log
sls invoke local -f hello --data '{"a":"bar"}'

Stream logs, or remove the service and all its AWS resources:

sls logs -f hello -t
sls remove

Documentation

Because this fork tracks v3 closely, the upstream Serverless Framework v3 documentation applies to nearly everything here:

  • Core concepts: https://www.serverless.com/framework/docs/providers/aws/guide/intro
  • serverless.yml reference: https://www.serverless.com/framework/docs/providers/aws/guide/serverless.yml
  • Events that trigger Lambda: https://www.serverless.com/framework/docs/providers/aws/guide/events

The only intentional behavioral difference from upstream v3 is the added Node.js runtimes described above.

Versioning

The version tracks the upstream v3 baseline it derives from (currently 3.40.0). Fork-specific changes are recorded in the git history and CHANGELOG.md.

Contributing

Contributions are welcome via issues and pull requests on this repository:

  • Issues: https://github.com/takuhii/serverless-node-next/issues
  • Pull requests: https://github.com/takuhii/serverless-node-next/pulls

Please keep changes aligned with the goal of the project: stay close to Serverless Framework v3 and focus on keeping it working with current runtimes and dependencies rather than adding large new features.

Credits

This project is a derivative of the Serverless Framework by Serverless, Inc., used under the MIT License. It is an independent community fork and is not affiliated with, sponsored by, or endorsed by Serverless, Inc. All trademarks are the property of their respective owners.

License

Licensed under the MIT License.

Files in node_modules and other external directories are maintained by their respective authors and carry their own licenses, which may differ from this project's.