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-request-handler

v0.5.2

Published

An npm module that allows your Node.js web applications to be deployed as an AWS Lambda function and invoked in response to API Gateway, HTTP API, or Application Load Balancer requests.

Downloads

537

Readme

lambda-request-handler

An npm module that allows your Node.js web applications to be deployed as an AWS Lambda function and invoked in response to API Gateway, HTTP API, or Application Load Balancer requests.

Build Status

The list of supported frameworks matches in-process-request

  • Express.js v3
  • Express.js v4
  • Express.js v5
  • Apollo Server v2
  • Hapi v19 (only supported in nodejs12.x runtime)
  • Hapi v20 (only supported in nodejs12.x runtime)
  • NestJS v7
  • Connect v3
  • Koa v2
  • Polka
  • Fastify v3

Inspired by aws-serverless-express

It supports nodejs10.x and nodejs12.x execution environments.

The main differences between this module and aws-serverless-express are

  • It's using in-process-request module to execute app handlers in-process without having to start background http server
  • Simpler setup as it doesn't require managing the internal http server
  • Support for applications that require asynchronous setup (for example reading config from network, or decrypting secrets from KMS)
  • It's faster, because it doesn't need to pass the request to the internal server through the unix socket
  • It's free from issues caused by limits in Node.js http module such as header size limit

The handler supports events from the following sources:

Demo app

There's a demo app showcasing the features of this library available here

Usage

The default export of lambda-request-handler is a function that takes an application handler (i.e. Express.js app instance) as an argument and returns an AWS Lambda handler function.

An additional header is injected into the request

  • x-aws-lambda-request-id - AWS Lambda Request Id
$ npm install lambda-request-handler

Express.js

const express = require('express')
const lambdaRequestHandler = require('lambda-request-handler')

const app = express()

app.get('/user/:id', (req, res) => {
  res.json({
    id: req.params.id,
    lambdaRequestId: req.header('x-aws-lambda-request-id')
    name: 'John'
  })
})

const handler = lambdaRequestHandler(app)

module.exports = { handler }

If the above file in your Lambda source was called index.js then the name of the handler in the Lambda configuration is index.handler

Advanced example with asynchronous setup

Sometimes the application needs to read configuration from remote source before it can start processing requests. For example it may need to decrypt some secrets managed by KMS. For this use case a special helper deferred has been provided. It takes a factory function which returns a Promise that resolves to the app instance. The factory function will be called only once.

const lambdaRequestHandler = require("lambda-request-handler")
const AWS = require("aws-sdk")
const express = require("express")

const createApp = (secret) => {
  const app = express()
  app.get("/secret", (req, res) => {
    res.json({
      secret: secret,
    })
  })
}

const myAppPromise = async () => {
  const kms = new AWS.KMS()
  const data = await kms
    .decrypt({
      CiphertextBlob: Buffer.from(process.env.ENCRYPTED_SECRET, "base64"),
    })
    .promise()
  const secret = data.Plaintext.toString("ascii")
  return createApp(secret)
}

const handler = lambdaRequestHandler.deferred(myAppPromise)

module.exports = { handler }

Hapi

Please note that Hapi v19 dropped support for Node v10. The only AWS Lambda runtime that supports it is nodejs12.x.

const Hapi = require("@hapi/hapi")
const lambdaRequestHandler = require("lambda-request-handler")

// create custom listener for Hapi
const myListener = new lambdaRequestHandler.HapiListener()

// Pass the custom listener to Hapi.server
const server = Hapi.server({
  listener: myListener,
})

server.route({
  method: "GET",
  path: "/",
  handler: (_request: any, _h: any) => {
    return "Hello World!"
  },
})

const myAppPromise = async () => {
  //wait for the server to initialize
  await server.start()
  // return the request listener function
  return myListener.handler
}

const handler = lambdaRequestHandler.deferred(myAppPromise)

module.exports = { handler }

If the above file in your Lambda source was called index.js then the name of the handler in the Lambda configuration is index.handler

NestJS

This example is in Typescript

import lambdaRequestHandler from "lambda-request-handler"

import { NestFactory } from "@nestjs/core"
import { Module, Get, Controller } from "@nestjs/common"
import { NestExpressApplication } from "@nestjs/platform-express"

@Controller()
class AppController {
  @Get()
  render() {
    return { hello: "world" }
  }
}

@Module({
  imports: [],
  controllers: [AppController],
})
class AppModule {}

const getApp = async () => {
  const app = await NestFactory.create<NestExpressApplication>(AppModule)

  return await lambdaRequestHandler.nestHandler(app)
}

const handler = lambdaRequestHandler.deferred(getApp)

module.exports = { handler }

If the above file in your Lambda source was called index.ts, compiled to index.js then the name of the handler in the Lambda configuration is index.handler

Polka

const polka = require('polka')
const lambdaRequestHandler = require('lambda-request-handler')

const app = polka()

app.get('/user/:id', (req, res) => {
  res.json({
    id: req.params.id,
    lambdaRequestId: req.header('x-aws-lambda-request-id')
    name: 'John'
  })
})

const handler = lambdaRequestHandler(app.handler.bind(app))

module.exports = { handler }

If the above file in your Lambda source was called index.js then the name of the handler in the Lambda configuration is index.handler