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 🙏

© 2024 – Pkg Stats / Ryan Hefner

lambda-node-runtime

v0.0.29

Published

Run any Node version on AWS Lambda

Downloads

62

Readme

Lambda Node Runtime

Lambda Node Runtime

Run your JavaScript code on newest Node.js version in AWS Lambda.

AWS Lambda rarely updates Node.js version, in fact AWS Lambda Node.js version problem looks similar to one Babel tries to solve for JS versions. This module enables you to use latest Node.js version with latest features and bug/security fixes.

Quick start

Installation

Add module to your AWS Lambda Node.js project:

npm install lambda-node-runtime -S

Usage

Write a module that holds AWS Lambda handler (i.e.: index.js):

// index.js
module.exports.handler = async (event, context) => {
    // Your code
}

or

// index.js
module.exports.handler = (event, context, callback) => {
    // Your code
}

Reference your handler using AWS Lambda Environment Variable (i.e.: index.js):

LAMBDA_NODE_HANDLER=index.handler

Choose Node.js 8.10 AWS Lambda Runtime, increase Timeout to at least 4 seconds (see Benchmarks section for more details) and set AWS Lambda Handler to expression:

node_modules/lambda-node-runtime/index.handler

Your AWS Lambda Function configuration should looks something like: AWS Lambda Function configuration for lambda-node-runtime

Optionally set desired Node.js version in package.json (default is latest Node.js 10 version available):

{
    "name": "your-lambda-function",
    "version": "1.0.0",
    "lambda-node-runtime": {
        "node-version": "10.0.0"
    }
}

Serverless support

Example serverless.yml configuration:

functions:
  yourLambdaFunction:
    handler: node_modules/lambda-node-runtime/index.handler
    runtime: nodejs8.10
    timeout: 4 # Cold start might take up to 4 seconds.
    environment:
        LAMBDA_NODE_HANDLER: index.handler # when handler method `handler` is in `index.js` module

Please note that when running serverless invoke local command, development Node.js version is used (not the one downloaded by the module).

How it works

When you install lambda-node-runtime module it downloads Node to node_modules/lambda-node-runtime/.node dir. Therefore, when you create an AWS Lambda Function package it includes desired Node runtime. When AWS Lambda Function package is deployed and invoked, bundled Node child process starts and executes your JS code.

Why is this possible?

It is possible to run Node version of your desire because Node binary is relatively small (around 10 MB when zipped) so there is plenty of space left for code (AWS Lambda Function package size restriction is 50 MB).

Also Node is fast to start so the latency between when you invoke AWS Lambda Function and when it actually starts running the code is lower.

Please note that latency is there because new Node.js child process must be started. However, Node.js child process is reused in warm AWS Lambda Function meaning only cold start is slower.

Benchmarks

This aim of this section is help you to understand lambda-node-runtime module suitability for your use case.

The chart depicts execution of test AWS Lambda Function (that returns the event object passed to it)

module.exports.handler = (event, context, callback) => {
    callback(null, event);
}

Both AWS Lambda Functions are allocated 128 MB of Memory.

With vs Without lambda-node-runtime

It takes around 4 seconds for cold AWS Lambda Function to start in case of lambda-node-runtime is used (compared to 20 milliseconds in case of plain AWS Lambda Runtime). According to this article AWS keeps the idle Lambda Function warm for up to 1 hour. It is also important to understant that cold start happends once for each AWS Lambda Function concurrent exection. Here is a good article that provides more details.

The reason why the first run with lambda-node-runtime takes significantly longer is significant amount of CPU required to start a new process (i.e.: allocate memory, resource descriptors). AWS Lambda allocates CPU power proportional to the memory. It takes around 200 ms (20 times less than when 128 MB of Memory is allocated) for first run to complete in case 3 GB/RAM of Memory is allocated for AWS Lambda Function.

Let's hide the first run to compare subsequent runs.

With vs Without lambda-node-runtime

Subsequent runs duration (except 2nd and 7th runs) is very similar. Please note that despite 2nd and 7th runs take relatively longer, it is only around 5 milliseconds.

The reasons why all the runs with lambda-node-runtime take a bit longer are:

  • the effort to resume the frozen Node.js child process in warm AWS Lambda Function before each run
  • the effort to serialize event and result objects between parent and child processes using IPC