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-plugin-about

v0.0.8

Published

About endpoint.

Readme

Serverless About Plugin

serverless npm (scoped) npm license

An about endpoint to describe your lambdas.

Requirements:

  • Serverless v1.12.x or higher.
  • AWS provider

How it works

About creates a new endpoint (named __about by default) which can be called to provide a json summary of the current purpose of each lambda.

Setup

Install via npm in the root of your Serverless service:

npm install serverless-plugin-about --save-dev
  • Add the plugin to the plugins array in your Serverless serverless.yml:
plugins:
  - serverless-plugin-about
  • Add a about property to all the events in all the functions you want to be documented.
functions:
  hello:
    events
      - http:
          path: /schema/{TypeID}
          method: get
          private: false
          about:
            purpose: Output of the schema for a type of data
            params: TypeID: the type of data
      - http:
          path: /schema/{TypeID}/{FieldID}
          method: get
          private: false
          about:
            purpose: Output of the schema for a field
            params: TypeID and FieldID
  • Add additional properties to trigger the output of a full description for each lambda
         about:
            purpose: Output of the schema for a type of data
            params: TypeID: the type of data
            id: fullschema
            lastUpdated: []

Note that the ok and lastUpdated are reserved and will automatically be populated, as follows: o lastUpdated is the date.time at which the about was ran

  • about to be able to invoke lambdas requires the following Policy Statement in iamRoleStatements:
iamRoleStatements:
  - Effect: 'Allow'
    Action:
      - 'lambda:InvokeFunction'
    Resource:
    - Fn::Join:
      - ':'
      - - arn:aws:lambda
        - Ref: AWS::Region
        - Ref: AWS::AccountId
        - function:${self:service}-${opt:stage, self:provider.stage}-*

Options

  • cleanFolder (default true)
  • memorySize (default 128)
  • name (default ${service}-${stage}-about-plugin)
  • timeout (default 10 seconds)
  • endpoint (default __about)
custom:
  about:
    cleanFolder: false,
    memorySize: 256
    name: 'show_me_info'
    timeout: 20
    endpoint: _show_info
  • define a custom header for the about to give the output some context
    endpoint: __about
    format:
      schemaVersion: 1
      name: A great system that uses about
      systemCode: greatsys
      components: []

Note that components is reserved and is used to identify the location into which the array of lambda infomation responses will be placed

Artifact

If you are doing your own package artifact set option cleanFolder to false and run serverless package. This will allow you to extract the healthcheck NodeJS lambda file from the _healthcheck folder and add it in your custom artifact logic.

Contribute

Help us making this plugin better and future proof.

  • Clone the code
  • Install the dependencies with npm install
  • Create a feature branch git checkout -b new_feature
  • Lint with standard npm run lint

License

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