
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
A tool to help developer work with AWS Lambda. The tool helps make things more:
$ npm install --global lambee-cli
This program uses the following environment variables:
$ lambee fnlist --help
Usage: lambee fnlist [options]
Prints a list of our Lambda functions.
Options:
-V, --version output the version number
--profile <profile> The AWS profile. You can set this using environment variable AWS_PROFILE.
--region <region> The AWS region. You can set this using environment variable AWS_DEFAULT_REGION.
-c, --cache Cache results locally. Makes repeated execution much quicker on slow networks. Will not pick up changes to the functions list though.
-v, --verbose Prints the full object returned by AWS SDK instead of just the function name.
-d, --debug Enable debug logging
-h, --help output usage information
$ lambee fnlogs --help
Usage: lambee fnlogs [options] <functionName>
Prints nice clean logs for a Lambda function.
Options:
-V, --version output the version number
-s, --startTime [startTime] Start time eg "10 mins ago"
-e, --endTime <endTime> End time eg "5 mins ago"
-l, --logLevel <logLevel> 1: All, 2: DEBUG (default), 3: INFO, 4: ERROR
-p, --profile [profile] The AWS profile. You can set this using environment variable AWS_PROFILE.
-r, --region <region> The AWS region. You can set this using environment variable AWS_DEFAULT_REGION.
-c, --cache Cache results locally. Makes repeated execution much quicker on slow networks. Will not pick up changes to the logs though.
--debug Enable debug logging
-h, --help output usage information
To get nicely formatted logs you should write the logging statements in your functions something like this:
console.error("Description of the error", error);
console.info("Something interesting happened", details);
process.env.DEBUG_LOGGING && console.debug("Something interesting happened", details);
$ lambee fnopen --help
Usage: fnopen [options] <functionName>
Opens a Lambda function in the AWS console.
Options:
--region <region> The AWS region. You can set this using environment variable AWS_DEFAULT_REGION.
-h, --help output usage information
$ lambee paramlist --help
Usage: lambee paramlist [options]
Prints the names and descriptions of our params stored in AWS SSM. Typically this will be for secret config like passwords and keys. Note, this function does not give you the config values.
Options:
-V, --version output the version number
--profile <profile> The AWS profile. You can set this using environment variable AWS_PROFILE.
--region <region> The AWS region. You can set this using environment variable AWS_DEFAULT_REGION.
-c, --cache Cache results locally. Makes repeated execution much quicker on slow networks. Will not pick up changes to the functions list though.
-v, --verbose Prints the full object returned by AWS SDK instead of just the function name.
-d, --debug Enable debug logging
-h, --help output usage information
FAQs
A tool to help developer work with AWS Lambda.
We found that lambee 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.