From 0da4b234ef58d65bcc004e11be7d69299d3ac5e0 Mon Sep 17 00:00:00 2001 From: Andrew Gaul Date: Tue, 1 Mar 2016 15:07:56 -0800 Subject: [PATCH] Add node.js example --- Client-compatibility-list.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Client-compatibility-list.md b/Client-compatibility-list.md index 51e978d..294c1f6 100644 --- a/Client-compatibility-list.md +++ b/Client-compatibility-list.md @@ -22,6 +22,17 @@ client.setEndpoint("http://127.0.0.1:8080"); client.setS3ClientOptions(new S3ClientOptions().withPathStyleAccess(true)); ``` +### [AWS SDK for JavaScript in node.js](https://aws.amazon.com/sdk-for-node-js/) + +```javascript +var AWS = require('aws-sdk'); +var s3 = new AWS.S3({ + endpoint: 'http://127.0.0.1:8081', + region: null, + s3ForcePathStyle: true +}); +``` + ### [boto](https://github.com/boto/boto) ```python