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

@silvermine/lambda-express

v0.3.1

Published

[![NPM Version](https://img.shields.io/npm/v/@silvermine/lambda-express.svg)](https://www.npmjs.com/package/@silvermine/lambda-express) [![License](https://img.shields.io/github/license/silvermine/lambda-express.svg)](./LICENSE) [![Build Status](https://t

Downloads

509

Readme

Lambda Express

NPM Version License Build Status Coverage Status Dependency Status Dev Dependency Status Conventional Commits

What?

An express-like framework for use with AWS Lambda functions that supports both API Gateway and Application Load Balancer integrations with Lambda.

The entire library is written in TypeScript so you get great autocomplete if you're using VS Code or similar. It's also very well tested, so you can rest assured that it will do what you need, and regressions between versions will be rare.

Why?

You shouldn't have to think about how API Gateway or Application Load Balancer send you request events, or how you need to respond to them with your responses. There are a lot of little intricacies, especially if you are using API Gateway for some of your APIs and Application Load Balancer for others (see this writeup for the differences).

If you're writing APIs, you've probably already written Express apps, so keeping things familiar will accelerate your development, allowing you to focus on your business logic.

Usage

Here's a simple example to get you up and running quickly (assumes your execution environment is Node 12.x):

npm i @silvermine/lambda-express

npm i -D aws-lambda

import { Application, Response, Request } from '@silvermine/lambda-express';
import { RequestEvent } from '@silvermine/lambda-express/dist/types/request-response-types';
import { NextCallback } from '@silvermine/lambda-express/dist/types/interfaces';
import { Context, Callback } from 'aws-lambda';

const app = new Application();

app.all('/*', (_request: Request, response: Response, next: NextCallback) => {
   response.set('Access-Control-Allow-Origin', '*');
   next();
});

app.options('/*', (_request: Request, response: Response) => {
   response.set('Access-Control-Allow-Methods', 'OPTIONS,GET')
      .set('Access-Control-Allow-Credentials', 'false');
   response.send('');
});

app.get('/my-endpoint', async (request: Request, response: Response) => {
   response.send('Hello world!');
});

export const handler = (event: RequestEvent, context: Context, callback: Callback): void => {
   app.run(event, context, callback);
};

export default handler;

At this point you should be able to compile, bundle, and deploy this Lambda. Assuming you have configured APIGW or ALB to forward traffic to your Lambda, you will now have a very basic working API!

License

This software is released under the MIT license. See the license file for more details.