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

@skyleague/event-horizon

v7.2.0

Published

A standardized boilerplate for lambda handlers.

Downloads

1,477

Readme

Event Horizon (@skyleague/event-horizon)

I propose that the information is stored not in the interior of the black hole as one might expect, but on its boundary, the event horizon

  • Stephen Hawking

Event Horizon simplifies doing the right thing with AWS lambda handlers. It tries to do as little as possible, and adds little functionality:

  • Typing & validation on handler input and output.
  • Sane and configurable error handling depending on the event source.
  • Exposes loggers, tracing and metrics functionality.
  • A standardized way of injecting dependencies in the cold start of lambdas.
  • Out of the box AWS X-Ray integration.
  • OpenAPI documentation generation.
  • Tries to stay out of your way as much as possible.

Notably, Event Horizon is not an http framework. Routing is outside of the scope of this library. Replacing the library with something else shouldn't be hard due to its limited functionality.

Documentation

The documentation can be found here.

Install

Use npm to install event-horizon and the event-horizon-cli

npm i @skyleague/event-horizon

Handlers

HTTP

An example http handler:

export const handler = httpHandler({
    http: {
        method: 'post',
        path: '/pet',
        schema: {
            body: Pet,
            responses: {
                200: Pet,
            },
        },
        handler: ({ body }, { logger }) => {
            logger.info('Request received', {
                foo: 'bar',
            })

            return {
                statusCode: 200,
                body: body,
            }
        },
    },
})

Local Development

Install Event Horizon CLI module

npm i @skyleague/event-horizon-dev

Usage

In the examples folder you will find a pet-store application which you can run.

event-horizon-dev start examples/pet-store/functions/index.ts | npx pino-pretty -m message

Two local endpoints will become available on http://localhost:3000

http://localhost:3000/pet and http://localhost:3000/pet/findByStatus

Logs will be available in your terminal.

Alternative projects

In no particular order, the following libraries try to solve similar problems (albeit very differently):

PR's are very welcome if you think your project is missing here.

Support

SkyLeague provides Enterprise Support on this open-source library package at clients across industries. Please get in touch via https://skyleague.io.

If you are not under Enterprise Support, feel free to raise an issue and we'll take a look at it on a best-effort basis!

License & Copyright

This library is licensed under the MIT License (see LICENSE.md for details).

If you using this SDK without Enterprise Support, please note this (partial) MIT license clause:

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND

Copyright (c) 2022, SkyLeague Technologies B.V.. 'SkyLeague' and the astronaut logo are trademarks of SkyLeague Technologies, registered at Chamber of Commerce in The Netherlands under number 86650564.

All product names, logos, brands, trademarks and registered trademarks are property of their respective owners. All company, product and service names used in this website are for identification purposes only. Use of these names, trademarks and brands does not imply endorsement.