Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
@lifeomic/dynamodb-dataloader
Advanced tools
A DataLoader that batches requests for DynamoDB. The DataLoader can fetch items from multiple tables at once so you should only need one instance per request.
You should be able to replace your calls to dynamoClient.get
with
loader.load
and automaticly switch your network calls from GetItem
to
BatchGetItem
.
NOTE: Make sure you update your IAM policy to allow dynamodb:BatchGetItem
if
you have strict IAM policies
const { createDataLoader } = require('@lifeomic/dynamodb-dataloader');
// Once per request or scope that can share data access
const client = new AWS.DyanmoDB();
const loader = createDataLoader({ client });
// Once per item fetch
const item = await loader.load({
table: 'your table name',
key: { idAattribute: { S: 'some id' } }
});
FAQs
A DataLoader that batches DynamoDB item lookups
The npm package @lifeomic/dynamodb-dataloader receives a total of 8 weekly downloads. As such, @lifeomic/dynamodb-dataloader popularity was classified as not popular.
We found that @lifeomic/dynamodb-dataloader 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.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.