
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
@mu-ts/dynamodb
Advanced tools
Nice sugarry layer over top of DynamoDB to make utilizing it quitea bit cleaner. Uses @aws-sdk library which is more moduarlized so your deploy sizes should be smaller.
This class also makes use of @mu-ts/serialization for some convenience behaviors while working with objects, like field encoding/encryption and uuid generation.
Pretty straight forward, for any class you want associated to a table, decorate with @table. The first argument is the table name, the remaining arguments are the keys that make up the hash key for the table.
This example shows a composite key, as do the examples throughout, but to do a signle key you would just use a single attribute.
import { table } from '@mu-ts/dynamodb';
@serializable
@table(process.env.USER_TABLE_NAME)
class User {
@primaryKey
name: string;
@sortKey
age: number;
@encode('hex')
group?: string;
}
A handful of utilities for the common cases. Want more, create a merge request with your implementation.
import { getItem } from '@mu-ts/dynamodb';
const timmy: User = new User();
user.name = 'timmy'
const user: User = await getItem(timmy);
// or if no object.
const user: User = await getItem({name: 'timmy'}, 'the-table');
import { putItem } from '@mu-ts/dynamodb';
const timmy: User = new User();
user.name = 'timmy'
user.age = 15
user.group = 'super special'
const user: User = await putItem(user);
import { deleteItem } from '@mu-ts/dynamodb';
const timmy: User = new User();
user.name = 'timmy'
user.age = 15
await deleteItem(timmy);
// or if no object
await deleteItem({name: 'timmy', age: 15}, 'table-to-delete-from');
Uses the PutItem command which only updates specific attributes, for a record matching the corresponding hash key. If no hash key matches then a new item is created.
The value returned is a merging together of the values passed in as well as the old values returned back from DynamoDB.
import { updateItem } from '@mu-ts/dynamodb'
let user: User = new User()
user.name = 'john'
user.age = 46
user.group = 'blue'
user = await updateItem(user)
FAQs
Nice sugarry layer over top of DynamoDB to make
We found that @mu-ts/dynamodb 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 Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.