Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paripsky/todafaceserver
https://github.com/paripsky/todafaceserver
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/paripsky/todafaceserver
- Owner: paripsky
- License: apache-2.0
- Created: 2017-08-09T18:19:16.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-08-10T00:51:27.000Z (over 7 years ago)
- Last Synced: 2024-11-09T16:17:55.255Z (about 2 months ago)
- Language: JavaScript
- Size: 31.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# AWS SDK for Node.js Sample Project
A simple Node.js application illustrating usage of the AWS SDK for Node.js.
## Requirements
The only requirement of this application is the Node Package Manager. All other
dependencies (including the AWS SDK for Node.js) can be installed with:npm install
## Basic Configuration
You need to set up your AWS security credentials before the sample code is able
to connect to AWS. You can do this by creating a file named "credentials" at ~/.aws/
(C:\Users\USER_NAME\.aws\ for Windows users) and saving the following lines in the file:[default]
aws_access_key_id =
aws_secret_access_key =See the [Security Credentials](http://aws.amazon.com/security-credentials) page.
It's also possible to configure your credentials via a configuration file or
directly in source. See the AWS SDK for Node.js [Developer Guide](http://docs.aws.amazon.com/AWSJavaScriptSDK/guide/node-configuring.html)
for more information.## Running the S3 sample
This sample application connects to Amazon's [Simple Storage Service (S3)](http://aws.amazon.com/s3),
creates a bucket, and uploads a file to that bucket. The script will automatically
create the file to upload. All you need to do is run it:node sample.js
The S3 documentation has a good overview of the [restrictions for bucket names](http://docs.aws.amazon.com/AmazonS3/latest/dev/BucketRestrictions.html)
for when you start making your own buckets.## License
This sample application is distributed under the
[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0).