npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

s3cas

1.0.0

@forbeslindesay

npmHomeRepoSnykSocket
Downloads:0
$ npm install s3cas
DailyWeeklyMonthlyYearly

s3cas

Content Addressable Storage on top of Amazon S3

Build Status Dependency Status NPM version

Installation

npm install s3cas

Usage

var assert = require('assert');
var connect = require('s3cas');

var client = connect(process.env.CONNECTION);

client.put(new Buffer('Hello World')).then(function (id) {
  assert(typeof id === 'string');
  return client.get(id);
}).then(function (buffer) {
  assert(Buffer.isBuffer(buffer));
  assert(buffer.toString('utf8') === 'Hello World');
}).done(function () {
  console.log('tests passed')
});
CONNECTION="{key}@{secret}@{bucket}" node test.js

License

MIT