Package Exports
- minio
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (minio) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Minio Javascript (Nodejs) Library for Amazon S3 cloud storage 
Install from npm 
$ npm install --save minioExample
#!/usr/bin/env node
var Minio = require('minio')
var Through2 = require('through2')
var s3client = new Minio({
url: 'https://s3.amazonaws.com',
accessKey: 'YOUR-ACCESSKEYID',
secretKey: 'YOUR-SECRETACCESSKEY'
})
var bucketStream = s3client.listBuckets()
bucketStream.pipe(Through2.obj(function(bucket, enc, done) {
console.log(bucket)
done()
}))Documentation
Bucket
dropAllIncompleteUploads(bucket, cb)
Object
getPartialObject(bucket, key, offset, length) Stream
putObject(bucket, key, Stream, cb)
listObjects(bucket, {prefix: prefix, recursive: true}) : Stream
dropIncompleteUpload(bucket, key, cb)