
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
@xapp/dynamo-service
Advanced tools
A service that allows the user to automatically generate dynamo rules for tables. It will do data validation on all items for puts and updates. It also allows extensions and has other utility functions.
This class is basically a wrapper of a aws.DynamoDB.DocumentClient. It provides useful abstractions that make it easier to work with the Dynamo items.
A wrapper for DynamoService which provides table validation. You must define a table with a set of rules, and the rules will be validated at each method.
Defining required keys:
const table = {
"myPrimaryKey": {
"type": "S" // "S", "N", "L", "M" i.e., the various types of DynamoDB data types.
primary: true
},
"mySortKey": {
"type": "N",
sort: true
},
"myRequiredKey": {
"type": "S",
required: true
}
};
const tableService = new TableService({ "myTableName", new DynamoService(new DynamoDB.DocumentClient(), table);
// This will throw an error because the primary key is missing.
tableService.put( { "mySortKey": new Date().getTime(), "myRequiredKey": "Hello" })
.then(() => { console.log("Won't see me."); })
.catch(() => { console.error("Made a mistake."); });
// This will throw an error because the sort key is missing.
tableService.put( { "myPrimaryKey": "1234ABCD", "myRequiredKey": new Date().toISOString() })
.then(() => { console.log("Won't see me."); })
.catch(() => { console.error("No sort key."); });
// This will succeed because everything exists.
tableService.put( { "myPrimaryKey": "123ABCD", "mySortKey": new Date().getTime(), "myRequiredKey": "Hello" })
.then((putObj) => { console.log(putObj); })
.catch(() => { console.error("An error was throw attempting to input the data, but validation will pass.") })
A builder class that allows easier to read Dynamo scan and query builders. The output will be a Dynamo object which contains the ExpressionAttributeNames and ExpressionAttributeValues with either a FilterExpression or ConditionExpression depending on the type.
// Produces a filter expression in which "param1 = 'value1'" and "param2 != 'value3'" and "param3 exists".
const filter = scan("param1").equals("Value1").and("param2").doesNotEquals("value3").and("param3").exists.query();
dynamoClient.scan({ TableName: "myTable", ...filter }).promise().then((results) => {
console.log(results);
});
// Produces a condition expression in which "param1 does not exist".
const condition = withCondition("param1").doesNotExist.query();
dynamoClient.put({ TableName: "myTable", ...condition }).promise().then((results) => {
console.log(results);
});
FAQs
A dynamo help class which will help maintain data integrity.
The npm package @xapp/dynamo-service receives a total of 69 weekly downloads. As such, @xapp/dynamo-service popularity was classified as not popular.
We found that @xapp/dynamo-service demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.