DynamoDB的Node.js开发包 Dynode
- 授权协议: Apache
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/Wantworthy/dynode
软件介绍
Dynode 是 Amazon's DynamoDB 的 Node.js 客户端开发包。
示例代码:
var dynode = require('dynode');
// When using the default client you must first give it auth credentials
dynode.auth({accessKeyId: "AWSAccessKey", secretAccessKey: "SecretAccessKey"});
dynode.createTable("NewTable", console.log);
dynode.listTables(console.log);
