npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

baidu-bcs

v0.4.0

Published

baidu bcs node.js sdk

Readme

NPM version License Dependency status

baidu-bcs

  • baidu bcs node.js sdk, friendly with co, koa ...

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: 'access key',
  secretKey: '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 - http headers
  • sourceBucket - only for copyObject()
  • sourceObject - only for copyObject()
  • the result of callback is a object contain: status, headers, body

use with co or koa

var option = {
  wrapper: 'thunk', // or: promise
  accessKey: '',
  secretKey: ''
};

var bcs = BCS.createClient(option);

// in co or koa
yield bcs.listBucket();

test

coverage: 97%

License

MIT