Meteor Aws Sdk

SDK for AWS services including Amazon S3, Amazon EC2, DynamoDB, and Amazon SWF
Alternatives To Meteor Aws Sdk
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Aws Sdk Java3,91326223 days ago933May 04, 2022141apache-2.0
The official AWS SDK for Java.
Pynamodb2,125121 days ago13June 09, 2022254mitPython
A pythonic interface to Amazon's DynamoDB
Lambdauth1,347
3 years ago38mitJavaScript
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 Dynamodb1,251
15 days ago1
List of resources for learning about modeling, operating, and using Amazon DynamoDB
Learn Aws Lambda945
a year ago3September 08, 201652JavaScript
✨ Learn how to use AWS Lambda to easily create infinitely scalable web services
Dynalite91817778a year ago121February 08, 202240mitJavaScript
An implementation of Amazon's DynamoDB built on LevelDB
Dynamodump801
a month ago14May 02, 20222mitPython
Simple backup and restore for Amazon DynamoDB using AWS SDK for Python (boto3)
Dynamodb Data Mapper Js7582943a year ago17August 15, 201877apache-2.0TypeScript
A schema-based data mapper for Amazon DynamoDB.
Awscala738112 days ago9February 13, 202171otherScala
Using AWS SDK on the Scala REPL
Lambda Refarch Imagerecognition656
2 months ago10apache-2.0JavaScript
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.
Alternatives To Meteor Aws Sdk
Select To Compare


Alternative Project Comparisons
Readme

AWS SDK smart package

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.

Installation

meteor add peerlibrary:aws-sdk
Popular Dynamodb Projects
Popular Amazon Projects
Popular Data Storage Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Javascript
Amazon Web Services
Sdk
Amazon
S3
Meteor
Dynamodb
Aws Ec2