
Product
Rust Support in Socket Is Now Generally Available
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.
@serverless/aws-lambda-sdk
Advanced tools
Instruments AWS Lambda functions and propagates traces to the Serverless Console
Resolve Layer ARN with following steps
@serverless/aws-lambda-sdk at https://github.com/serverless/console/releasessls-sdk-node.json asset, find ARN of a layer in a region in which function is deployedSLS_ORG_ID: (id of your organization in Serverless Console)AWS_LAMBDA_EXEC_WRAPPER: /opt/sls-sdk-node/exec-wrapper.shEnsure @serverless/aws-lambda-sdk dependency installed for the function
Decorate function handler:
CJS:
const instrument = require('@serverless/aws-lambda-sdk/instrument');
module.exports.handler = instrument(
(event, context, callback) => { /* Original handler logic */ },
// Optional
{
orgId: <orgId> // By default taken from SLS_ORG_ID env variable
}
);
ESM:
import instrument from '@serverless/aws-lambda-sdk/instrument';
export const handler = instrument(
(event, context, callback) => { /* Original handler logic */ },
// Optional
{
orgId: <orgId> // By default taken from SLS_ORG_ID env variable
}
);
SDK automatically creates the trace that covers internal process of function invocation and initialization.
For all the details check docs/sdk-trace.md
FAQs
## AWS Lambda [Serverless Console](https://www.serverless.com/console) SDK
The npm package @serverless/aws-lambda-sdk receives a total of 111 weekly downloads. As such, @serverless/aws-lambda-sdk popularity was classified as not popular.
We found that @serverless/aws-lambda-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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.

Product
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.

Security News
Chrome 144 introduces the Temporal API, a modern approach to date and time handling designed to fix long-standing issues with JavaScript’s Date object.

Research
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.