
Research
TeamPCP Compromises Telnyx Python SDK to Deliver Credential-Stealing Malware
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.
Dynamode is a modeling tool for Amazon's DynamoDB. Its goal is to ease the use of DynamoDB without its quirks and emphasize DynamoDB advantages over other databases. Dynamode provides a straightforward, object-oriented class-based solution to model your data. It includes strongly typed classes and methods, query and scan builders, and much more.
Dynamode is highly influenced by other ORMs/ODMs, such as TypeORM, Dynamoose and Mongoose.
Check out our dedicated documentation page here for info about the library, guide and more.
Check out the installation section of our docs for the detailed installation instructions.
Dynamode is licensed under The MIT License.
Example table definition:
type ExampleTableProps = {
propPk: string;
propSk: number;
index: string;
};
const TABLE_NAME = 'example-table';
class ExampleTable extends Entity {
@attribute.partitionKey.string()
propPk: string;
@attribute.sortKey.number()
propSk: number;
@attribute.lsi.sortKey.string({ indexName: 'LSI_NAME' })
index: string;
constructor(props: ExampleTableProps) {
super();
this.propPk = props.propPk;
this.propSk = props.propSk;
this.index = props.index;
}
}
export const ExampleTableManager = new TableManager(ExampleTable, {
tableName: TABLE_NAME,
partitionKey: 'propPk',
sortKey: 'propSk',
indexes: {
LSI_NAME: {
sortKey: 'index',
},
},
});
await ExampleTableManager.create();
Example entity definition:
type ExampleEntityProps = ExampleTableProps & {
attr: { [k: string]: number };
};
export class ExampleEntity extends ExampleTable {
@attribute.object()
attr: { [k: string]: number };
constructor(props: ExampleEntityProps) {
super(props);
this.attr = props.attr;
}
}
export const ExampleEntityManager = ExampleTableManager.entityManager(ExampleEntity);
await ExampleEntityManager.put(new ExampleEntityManager({ ... }));
Find more examples under the examples/ directory.
FAQs
Dynamode is a modeling tool for Amazon's DynamoDB
The npm package dynamode receives a total of 338 weekly downloads. As such, dynamode popularity was classified as not popular.
We found that dynamode demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.

Security News
/Research
Widespread GitHub phishing campaign uses fake Visual Studio Code security alerts in Discussions to trick developers into visiting malicious website.