Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
build-lambda-layer
Advanced tools
Build Lambda Layer is a small utility CLI for building Lambda Layers with control for AWS Node Lambda projects.
Build Lambda Layer takes all complexity out of building lambda layers.
By running:
build-layer my-lambda-layer
Build Lambda Layer will:
package.json
dependencies to your my-lambda-layer
lambda layer, andBy running:
build-layer my-lambda-layer --files 'packages/**/package.json'
Build Lambda Layer will:
package/**/package.json
dependencies to your lambda layer, andBuild Lambda Layer supports specificity with ignore
and include
options.
By adding a "lambdaLayer"
object to your package.json
file, you can specify packages to ignore
and include
:
{
"buildLambda": {
"ignore": ["@types/aws-lambda"],
"include": {
"aws-lambda": "latest"
}
}
}
You can add a lambdaLayerrc
file to your project root if you want to preserve your package.json
file.
{
"ignore": ["@types/aws-lambda"],
"include": {
"aws-lambda": "latest"
}
}
There is nothing stopping you from creating your own dependency object to install.
Add a <my-dependencies>.json
file to your project root:
{
"dependencies": {
"aws-lambda": "latest"
}
}
And run:
build-layer my-lambda-layer --files '<my-dependencies>.json'
That's it! 🎉
Save yourself the time and effort of building Lambda Layers and let Build Lambda Layer do it for you!
pnpm install build-lambda-layer
Usage: build-layer [options] <dir>
Build Lambda Layer, Build node awesome lambda layers with controls 🕹
Arguments:
dir lambda layer directory to build to
Options:
--architectures [architectures...] architectures for deployment to AWS
--bucket <bucket> bucket to deploy to using AWS
-c, --config <config> path to a config file
--deploy deploy your lambda layer
-n, --name <name> lambda layer name
--debug enable debugging
-f, --files [files...] file glob pattern
-i, --ignore [ignore...] ignore glob pattern
--isTesting enable running fn tests w/o overwriting
--noZip don't zip lambda layer
-o, --output <output> output path
-r, --rootDir <rootDir> root directory to start search
--runner <runner> npm, pnpm, or yarn
--runtimes [runtimes...] runtimes for deployment to AWS
-t, --isTestingCLI enable CLI only testing
-h, --help display help for command
Gets you logging in your terminal
build-layer <dir> --debug
Just build you a directory
build-layer <dir> --noZip
Build everything with a runner besides npm
. Options are npm
, pnpm
, or yarn
build-layer <dir> --runner 'pnpm'
Assumes you're authenticated and have the AWS CLI
build-layer <dir> --bucket <bucket> --runtimes [runtimes...] --architectures [architectures...]
Made by @yowainwright for fun with passion! MIT, 2022
FAQs
Build node awesome lambda layers with controls 🕹
The npm package build-lambda-layer receives a total of 9 weekly downloads. As such, build-lambda-layer popularity was classified as not popular.
We found that build-lambda-layer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.