Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Aws Sdk Java | 3,913 | 26 | 22 | 3 days ago | 933 | May 04, 2022 | 141 | apache-2.0 | ||
The official AWS SDK for Java. | ||||||||||
Pynamodb | 2,125 | 1 | 21 days ago | 13 | June 09, 2022 | 254 | mit | Python | ||
A pythonic interface to Amazon's DynamoDB | ||||||||||
Lambdauth | 1,347 | 3 years ago | 38 | mit | JavaScript | |||||
A sample authentication service implemented with a server-less architecture, using AWS Lambda to host and execute the code and Amazon DynamoDB as persistent storage. This provides a cost-efficient solution that is scalable and highly available and can be used with Amazon Cognito for Developer Authenticated Identities. | ||||||||||
Awesome Dynamodb | 1,251 | 15 days ago | 1 | |||||||
List of resources for learning about modeling, operating, and using Amazon DynamoDB | ||||||||||
Learn Aws Lambda | 945 | a year ago | 3 | September 08, 2016 | 52 | JavaScript | ||||
✨ Learn how to use AWS Lambda to easily create infinitely scalable web services | ||||||||||
Dynalite | 918 | 177 | 78 | a year ago | 121 | February 08, 2022 | 40 | mit | JavaScript | |
An implementation of Amazon's DynamoDB built on LevelDB | ||||||||||
Dynamodump | 801 | a month ago | 14 | May 02, 2022 | 2 | mit | Python | |||
Simple backup and restore for Amazon DynamoDB using AWS SDK for Python (boto3) | ||||||||||
Dynamodb Data Mapper Js | 758 | 29 | 43 | a year ago | 17 | August 15, 2018 | 77 | apache-2.0 | TypeScript | |
A schema-based data mapper for Amazon DynamoDB. | ||||||||||
Awscala | 738 | 11 | 2 days ago | 9 | February 13, 2021 | 71 | other | Scala | ||
Using AWS SDK on the Scala REPL | ||||||||||
Lambda Refarch Imagerecognition | 656 | 2 months ago | 10 | apache-2.0 | JavaScript | |||||
The Image Recognition and Processing Backend reference architecture demonstrates how to use AWS Step Functions to orchestrate a serverless processing workflow using AWS Lambda, Amazon S3, Amazon DynamoDB and Amazon Rekognition. |
AWS SDK Meteor smart package for node.js and browser package, providing the SDK that helps take the complexity out of coding by providing JavaScript objects for AWS services including Amazon S3, Amazon EC2, DynamoDB, and Amazon SWF.
After Adding this package to your Meteor application import it using import { AWS } from 'meteor/peerlibrary:aws-sdk';
,
which you can then use according to the documentation.
On the server-side, in addition to existing API, a fibers-enabled
synchronous (blocking) methods are added to objects. They
are named the same, but with a Sync
suffix.
Server-side example using CoffeeScript:
if Meteor.settings.AWS
AWS.config.update
accessKeyId: Meteor.settings.AWS.accessKeyId
secretAccessKey: Meteor.settings.AWS.secretAccessKey
else
console.warn "AWS settings missing"
s3 = new AWS.S3()
list = s3.listObjectsSync
Bucket: 'bucketname'
Prefix: 'subdirectory/'
for file in list.Contents
# ...
Both client and server side.
meteor add peerlibrary:aws-sdk