
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
@gidw/aws-lambda-deploy
Advanced tools
gald [command] [option]
There are 3 commands available
gald init
gald test
gald deploy
Create (missing) configuration files that provide information to the module about the AWS Lambda function.
After running init
you should consider
adding lambda-secrets.json
to your .gitignore
.
The Handler
property consists of
the module name and the function name.
For example a file handler.js
with:
exports.myHandler = function () {};
The resulting Handler
property looks like this:
"Handler": "handler.myHandler"
Execute all defined tests in lambda-test.json
or a different JSON file.
gald test [optional json file]
Deploys the Lambda function to AWS Lambda. In case the Lambda function does not exist or the configuration has been changed, the user will be notified.
Deploy looks for the archive defined in
lambda-config.json
under the property archiveName
.
Your build system will have to provide a zip file
with the necessary components
for the AWS Lambda function.
For example, have a build script that looks like this:
zip -r -9 archive.zip handler.js
If your AWS Lambda function depends on other packages,
make sure to include the node_modules
folder,
with the dependencies installed,
in your zip file.
[1.0.0] - 2017-06-25
FAQs
Helper module for deploying AWS Lambda functions in Node.js.
We found that @gidw/aws-lambda-deploy 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.