Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

baidu-bcs

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

baidu-bcs

baidu bcs node.js sdk

  • 0.2.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

NPM

baidu-bcs

  • baidu bcs node.js sdk

install

npm install baidu-bcs

api

  • putBucket
  • listBucket
  • deleteBucket
  • putObject
  • copyObject
  • putSuperfile
  • getObject
  • headObject
  • listObject
  • deleteObject
  • putAcl
  • getAcl

document

create bcs client

var BCS = require('baidu-bcs');
var bcs = BCS.createClient({
  accessKey: 'your access key',
  secretKey: 'your secret key'
});

/*
 * 可选 option
 *
 * host:     default: bcs.duapp.com,
 * port:     default: 80
 * protocol: default: http:
 * timeout:  default: 300000 // 5 minutes
 * ip:       // 允许上传的ip,默认为空,即:不限制ip
 * time:     // 有效时间
 * size:     // 限制上传最大字节
 * agent:    default: agent.maxSockets = 20
 */

put bucket

bcs.putBucket({
  bucket: '',
  acl: ''
}, function (error, result) {});

put bucket with acl

bcs.putBucket({
  bucket: '',
  acl: ''
}, function (error, result) {});

list bucket

bcs.listBucket(function (error, result) {});

delete bucket

bcs.deleteBucket({
  bucket: ''
}, function (error, result) {});

put object with file path

bcs.putObject({
  bucket: '',
  object: '',
  source: './index.js'
}, function (error, result) {});

put object with buffer

bcs.putObject({
  bucket: '',
  object: '',
  source: new Buffer('baidu-bcs'),
  headers: {
    'Content-Type': 'text/plain'
  }
}, function (error, result) {});

put object with stream

bcs.putObject({
  bucket: '',
  object: '',
  source: fs.createReadStream(__filename),
  headers: {
    'Content-Type': 'text/plain',
    'Content-Length': fs.statSync(__filename).size // important: the 'Content-Type' is must
  }
}, function (error, result) {});

put object with headers

bcs.putObject({
  bucket: '',
  object: '',
  source: './index.js',
  headers: {
    'Content-Type': 'text/javascript'
  }
}, function (error, result) {});

copy object

bcs.copyObject({
  bucket: '',
  object: '',
  sourceBucket: '',
  sourceObject: '',
  headers: {
    'Content-Type': ''
  }
}, function (error, result) {});

head object

bcs.headObject({
  bucket: '',
  object: ''
}, function (error, result) {});

list object

bcs.listObject({
  bucket: '',
  start: 1,
  limit: 1
}, function (error, result) {});

get object

bcs.getObject({
  bucket: '',
  object: '',
}, function (error, result) {});

get object to file path

bcs.getObject({
  bucket: '',
  object: '',
  dest: './xxoo.xo'
}, function (error, result) {});

get object to write stream

var writeStream = fs.createWriteStream('./xxoo.xo')
bcs.getObject({
  bucket: '',
  object: '',
  dest: writeStream
}, function (error, result) {});

delete bucket

bcs.deleteBucket({
  bucket: ''
}, function (error, result) {});

put acl

bcs.putAcl({
  bucket: '',
  acl: 'private'
}, function (error, result) {});

get acl

bcs.getAcl({
  bucket: ''
}, function (error, result) {});

params note

  • bucket - bucket name
  • object - object name
  • headers - you can set http headers by this
  • sourceBucket - only for copyObject()
  • sourceObject - only for copyObject()
  • the result of callback is a object contain: status, headers, body

test

coverage: 93%

License

MIT

Keywords

FAQs

Package last updated on 19 Mar 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc