
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
@evokegroup/aws-dynamodb
Advanced tools
AWS SDK v3 DynamoDB utilities.
const { createClient, putItem } = require('@evokegroup/aws-dynamodb');
putItem({
client: createClient({ region: 'REGION' }),
tableName: 'TABLE_NAME',
data: {
ID: 'ea8623e7-07f9-4b0e-bbd0-e11f00ccace6',
Email: 'john.doe@gmail.com',
FirstName: 'John',
LastName: 'Doe',
Phone: {
Mobile: '555-123-4567',
Home: '555-987-6543'
},
HowContact: ['email', 'mobile', 'home'],
DateCreated: '2022-01-01T00:00:00.000Z'
}
})
.then((response) => {
// do something
})
.catch((err) => {
// do something
})
const { createClient, getItem } = require('@evokegroup/aws-dynamodb');
getItem({
client: createClient({ region: 'REGION' }),
tableName: 'TABLE_NAME',
key: { PK: 'ea8623e7-07f9-4b0e-bbd0-e11f00ccace6' }
})
.then((response) => {
// do something
})
.catch((err) => {
// do something
})
const { createClient, updateItem } = require('@evokegroup/aws-dynamodb');
updateItem({
client: createClient({ region: 'REGION' }),
tableName: 'TABLE_NAME',
partitionKey: { ID: 'ea8623e7-07f9-4b0e-bbd0-e11f00ccace6' },
SET: {
FirstName: 'Jonathan',
Address: {
State: 'NY',
ZIP: '12345'
}
},
REMOVE: ['Phone.Home'],
DELETE: {
HowContact: ['home']
},
createMaps: true // This will create any undefined map (Address in this case) BEFORE updating the table. Default: true
})
.then((response) => {
// do something
})
.catch((err) => {
// do something
});
const { createClient, query, transformObjectFromDDB } = require('@evokegroup/aws-dynamodb');
query({
client: createClient({ region: 'REGION' }),
tableName: 'TABLE_NAME',
indexName: 'GSI_EMAIL',
keyCondition: {
Email: 'john.doe@gmail.com'
}
})
.then((response) => {
if (response.Items.length == 1) {
resolve(transformObjectFromDDB(response.Items[0])); // Transform the response from the DynamoDB format to a regular object
} else {
resolve(null);
}
})
.catch((err) => {
// do something
});
const { createClient, deleteItem } = require('@evokegroup/aws-dynamodb');
deleteItem({
client: createClient({ region: 'REGION' }),
tableName: 'TABLE_NAME',
partitionKey: { PK: 'ea8623e7-07f9-4b0e-bbd0-e11f00ccace6'}
})
.then((response) => {
// do something
})
.catch((ex) => {
console.error(ex);
});
const { createClient } = require('@evokegroup/aws-dynamodb');
const { batchWrite, BatchWriteInput } = require('@evokegroup/aws-dynamodb/batch');
batchWrite({
client: createClient({ region: 'REGION' }),
batchWriteInput: [
new BatchWriteInput({
tableName: 'TABLE_NAME',
putItems: [{
ID: '*',
Email: '*'
// other data
}],
deleteItemKeys: [{ ID: '-' }]
})
]
})
.then((response) => {
// do something
})
.catch((ex) => {
console.error(ex);
});
// OR
batchWrite({
client: createClient({ region: 'REGION' }),
batchWriteInput: [
new BatchWriteInput({
tableName: 'TABLE_NAME',
putItems: [{
ID: '*',
Email: '*'
// other data
}],
deleteItemKeys: [{ ID: '-' }]
})
],
awaiter: true
})
// wait(callback, pollingTimeout = 10000)
// pass a polling timeout in milliseconds as the 2nd parameter to poll faster or slower
// starts execution and returns a Promise
.wait((awaiter) => {
console.log(`Batches remaining: ${awaiter.remainint()}`);
})
.then((response) => {
// do something
})
.catch((ex) => {
console.error(ex);
});
const { createClient } = require('@evokegroup/aws-dynamodb');
const { StringPartitionKeyField, StringSortKeyField } = require('@evokegroup/aws-dynamodb/fields');
const { createTable } = require('@evokegroup/aws-dynamodb/table');
require('@evokegroup/aws-dynamodb/logger').configure({ level: 'INFO' });
createTable({
client: createClient({ region: 'REGION' }),
tableName: 'TABLE_NAME',
partitionKey: new StringPartitionKeyField({ name: 'PK' }),
sortKey: new StringSortKeyField({ name: 'SK' })
})
.then((response) => {
// do something
})
.catch((ex) => {
console.error(ex);
});
Send messages logged by the library to a Console
.
const { configure, LogLevel } = require('@evokegroup/aws-dynamodb/logger');
configure({
level: LogLevel.DEBUG, // default: OFF
timestamp: true, // default: false
messageType: true, // default: false
Console: null // create your own Console object to log to somewhere other that the global console
});
require('@evokegroup/aws-dynamodb/logger').configure({ level: 'ERROR' });
FAQs
AWS DynamoDB utilities
The npm package @evokegroup/aws-dynamodb receives a total of 0 weekly downloads. As such, @evokegroup/aws-dynamodb popularity was classified as not popular.
We found that @evokegroup/aws-dynamodb demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.
Security News
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.