Minio JavaScript Client SDK提供简单的API来访问任何Amazon S3兼容的对象存储服务。
本快速入门指南将向您展示如何安装客户端SDK并执行示例JavaScript程序。有关API和示例的完整列表,请参阅JavaScript客户端API参考文档。
本文假设你已经安装了nodejs 。
npm install --save minio
git clone https://github.com/minio/minio-js
cd minio-js
npm install
npm install -g
你需要设置5个属性来链接Minio对象存储服务。
参数 | 描述 |
---|---|
endPoint | 对象存储服务的URL |
port | TCP/IP端口号。可选值,如果是使用HTTP的话,默认值是80 ;如果使用HTTPS的话,默认值是443 。 |
accessKey | Access key是唯一标识你的账户的用户ID。 |
secretKey | Secret key是你账户的密码。 |
secure | true代表使用HTTPS |
var Minio = require('minio')
var minioClient = new Minio.Client({
endPoint: 'play.minio.io',
port: 9000,
secure: true,
accessKey: 'Q3AM3UQ867SPQQA43P2F',
secretKey: 'zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG'
});
本示例连接到一个对象存储服务,创建一个存储桶并上传一个文件到存储桶中。
我们在本示例中使用运行在 https://play.minio.io:9000 上的Minio服务,你可以用这个服务来开发和测试。示例中的访问凭据是公开的。
var Minio = require('minio')
// Instantiate the minio client with the endpoint
// and access keys as shown below.
var minioClient = new Minio.Client({
endPoint: 'play.minio.io',
port: 9000,
secure: true,
accessKey: 'Q3AM3UQ867SPQQA43P2F',
secretKey: 'zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG'
});
// File that needs to be uploaded.
var file = '/tmp/photos-europe.tar'
// Make a bucket called europetrip.
minioClient.makeBucket('europetrip', 'us-east-1', function(err) {
if (err) return console.log(err)
console.log('Bucket created successfully in "us-east-1".')
// Using fPutObject API upload your file to the bucket europetrip.
minioClient.fPutObject('europetrip', 'photos-europe.tar', file, 'application/octet-stream', function(err, etag) {
if (err) return console.log(err)
console.log('File uploaded successfully.')
});
});
node file-uploader.js
Bucket created successfully in "us-east-1".
mc ls play/europetrip/
[2016-05-25 23:49:50 PDT] 17MiB photos-europe.tar
完整的API文档在这里。
getBucketNotification
setBucketNotification
removeAllBucketNotification
listenBucketNotification
(Minio Extension)
- list-buckets.js
- list-objects.js
- list-objects-v2.js
- bucket-exists.js
- make-bucket.js
- remove-bucket.js
- list-incomplete-uploads.js
- put-object.js
- get-object.js
- copy-object.js
- get-partialobject.js
- remove-object.js
- remove-incomplete-upload.js
- stat-object.js
####完整示例 : 存储桶通知