Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@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 18 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
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.