Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
The aws-sdk dynamo client is very close to the API, dyno tries to help reduce the amount of repetitive code needed to interact with dynamodb.
First it guesses types. Dynamo is very specific about its types:
{key:{S: 'value'}}
in dyno can be written like:
{key:'value'}
When dyno doesn't do anything to improve a command, it simply passes it through to aws-sdk dynamodb client.
This is the case right now with commands like scan
npm install dyno -S
Dyno includes a cli for working with DynamoDB tables.
Dyno assumes that credentials for AWS will be provided in the ENVIRONMENT as described in the aws-sdk docs
dyno <region> <sub command> -e <Endpoint URL>
dyno us-east-1 tables
dyno local tables
// setting the region to local, will set the endpoint to http://localhost:4567
dyno local tables
{"TableNames":['my-table', 'my-other-table']}
dyno local table my-table
{"Table":{"AttributeDefinitions":[{"AttributeName":"collection","AttributeType":"S"},....]}}
Outputs line delimited JSON for every item in the table.
dyno local scan my-table
{"id":"0.9410678697749972","collection":"somethign:0","attr":"moredata 64"}
{"id":"0.9417226337827742","collection":"somethign:0","attr":"moredata 24"}
{"id":"0.9447696127463132","collection":"somethign:0","attr":"moredata 48"}
{"id":"0.9472108569461852","collection":"somethign:0","attr":"moredata 84"}
....
Outputs the table schema then does a scan (like above)
dyno local export my-table
{"AttributeDefinitions":[{"AttributeName":"collection","AttributeType":"S"},...]}
{"id":"0.9410678697749972","collection":"somethign:0","attr":"moredata 64"}
{"id":"0.9417226337827742","collection":"somethign:0","attr":"moredata 24"}
{"id":"0.9447696127463132","collection":"somethign:0","attr":"moredata 48"}
{"id":"0.9472108569461852","collection":"somethign:0","attr":"moredata 84"}
....
Receives an exported table on stdin. Expects the first line to be the table schema, and the rest of the lines to be items.
dyno us-west-1 export my-table | dyno local import my-table-copy
var dyno = module.exports.dyno = require('dyno')({
accessKeyId: 'XXX',
secretAccessKey: 'XXX',
region: 'us-east-1',
table: 'test'
});
var item = {id: 'yo', range: 5};
dyno.putItem(item, function(err, resp){});
// multiple items
var items = [
{id: 'yo', range: 5},
{id: 'guten tag', range: 5},
{id: 'nihao', range: 5}
];
dyno.putItems(items, function(err, resp){})
Set the table name per command:
var item = {id: 'yo', range: 5};
dyno.putItem(item, {table:'myothertablename'}, function(err, resp){});
var key = {id: 'yo', range:5};
var item = {put:{a: 'oh hai'}, add:{count: 1}};
dyno.updateItem(key, item, function(err, resp){});
var keys = [
{id: 'yo', range: 5},
{id: 'guten tag', range: 5},
{id: 'nihao', range: 5}
];
dyno.deleteItems(keys, function(err, resp){})
var query = {id: {'EQ':'yo'}, {range:{'BETWEEN':[4,6]}};
dyno.query(query, function(err, resp){
assert.deepEqual(resp, {count : 1, items : [{id : 'yo', range : 5 }]});
});
dyno.query(query, {attributes:['range']}, function(err, resp){
assert.deepEqual(resp, {count : 1, items : [{range : 5 }]});
});
The last key evaluated by dynamodb can be found in the query callback's third argument.
dyno.query(query, {pages: 1}, function(err, resp, metas) {
next = metas.pop().last;
...
});
This key can be passed back in to another query to get the next page of results.
dyno.query(query, {start: next, pages: 1}, function(err, resp, metas) {
...
});
FAQs
Simple DynamoDB client
We found that dyno demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 43 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.