Socket
Socket
Sign inDemoInstall

serverless-esbuild-layers

Package Overview
Dependencies
116
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    serverless-esbuild-layers

[![Test Coverage](https://api.codeclimate.com/v1/badges/e5f4215f1f3f63aad0eb/test_coverage)](https://codeclimate.com/github/beforeyoubid/serverless-esbuild-layers/test_coverage) [![Maintainability](https://api.codeclimate.com/v1/badges/e5f4215f1f3f63aad0e


Version published
Weekly downloads
345
decreased by-36.11%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

serverless-esbuild-layers

Test Coverage Maintainability

Plugin for the Serverless framework that allows you to leverage Lambda layers to separate your node modules into layers attached to relevant functions.

This helps to keep the overall function size down.

This library is designed to be used in conjuction with serverless-esbuild to build your code.

If you are using serverless-webpack, you can try serverless-webpack-layers to achieve this functionality.

Diagram

Installation

yarn add --dev serverless-esbuild-layers serverless-esbuild esbuild-node-externals
npm install --save-dev serverless-esbuild-layers serverless-esbuild esbuild-node-externals
pnpm install --dev serverless-esbuild-layers serverless-esbuild esbuild-node-externals

Setup

Once installed, you need to add this to your serverless plugins:

plugins:
  - serverless-esbuild
  - serverless-esbuild-layers

You also need to configure serverless-esbuild to externalise all node modules:

custom:
  esbuild:
    plugins: esbuild-plugins.js
    exclude:
      - '*'

the serverless-esbuild library supports custom plugins to configure esbuild. In order to leverage this library, you need to use esbuild-node-externals to externalise all node modules

const { nodeExternalsPlugin } = require('esbuild-node-externals');

module.exports = [nodeExternalsPlugin()];

Adding layers

Once the plugin is configured in your serverless file, you need to add Layer definitions to your serverless file:

layers:
  lib:
    path: '.serverless'
    name: my-modules
    description: node_modules
    compatibleRuntimes:
      - nodejs14.x

Then you can reference the relevant layers in each function (the ref should match NameLambdaLayer where name is the key of your layer with the first character uppercase)

functions:
  test:
    handler: handler.default
    layers:
      - { Ref: LibLambdaLayer }

If you have multiple functions, it's recommended to add different layers depending on node module overlap. This library will identify which modules are needed by all the functions attached to each layer.

Config

This library can be configured by adding options into your serverless file:

custom:
  esbuild-layers:
    packager: 'auto' # can be specified as 'npm' | 'yarn' | 'pnpm';
    forceExclude:
      - some-library
    forceInclude:
      - some-other-library

Package.json pathing

If using a monorepo, you may need to specify a different package.json file. You can do so by using the packageJsonPath config variable like so:

custom:
  esbuild-layers:
    packageJsonPath: ../

Keywords

FAQs

Last updated on 22 Feb 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc