Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
lambduh-gulp
Advanced tools
Adds zip and upload gulp tasks for a streamlined AWS Lambda workflow
A handful of gulp commands typical to building AWS Lambda functions
Much of this was inspired/borrowed from Adam Neary's post here.
npm i --save-dev lambduh-gulp
Pass your instance of gulp into lambduh-gulp somewhere in your gulpfile.js
.
//gulpfile.js
var gulp = require('gulp');
var lambduhGulp = require('lambduh-gulp');
lambduhGulp(gulp);
Optionally, you don't need to require your own gulp
... but if you want to add any of your own tasks, you'll want your own instance.
gulp zipload
The task you'll use the most – runs gulp lambda-zip
, then gulp upload
. See the next two funcs for details.
gulp lambda-zip
clean
to remove any dist/*
or dist.zip
index.js
, bin/*
, and package.json
into a dist
folderdist/
dist.zip
gulp upload
This function assumes you have a local ./lambda-config.js
file with details on your lambda function. The parameters match those used by the (current) JS aws-sdk:
//lambda-config.js
module.exports = {
FunctionName: 'funcName',
Description: 'descrip',
Handler: 'index.handler',
Role: 'arn:aws:iam:etcetc',
Region: 'us-east-1',
Runtime: 'nodejs',
MemorySize: 320,
Timeout: 60,
Environment: 'production'
}
Uploading also assumes your have permissions to update lambda functions from your machine. This takes time to configure via the AWS CLI, but the resulting workflow is worth it. And besides, AWS's interface is much easier to use from the commandline relative to the non-sense they present in the console.
Note that if you're not careful, you may overwrite some of the gulp tasks this module uses. If any of these are silly (i.e. this module shouldn't own the namespace), let me know and I can prefix all of them:
clean
js
bin
node-mods
zip
lambda-zip
upload
zipload
I'd love some feedback/PRs/whatever - open an issue and let's talk.
FAQs
Adds zip and upload gulp tasks for a streamlined AWS Lambda workflow
The npm package lambduh-gulp receives a total of 3 weekly downloads. As such, lambduh-gulp popularity was classified as not popular.
We found that lambduh-gulp 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
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.