Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
npm install baidu-bcs
create bcs client
var BCS = require('baidu-bcs')
var bcs = BCS.createClient({
accessKey: 'your access key',
secretKey: 'your secret key'
})
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
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) {})
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) {})
copyObject()
copyObject()
result
of callback is a object contain: status
, headers
, body
FAQs
baidu bcs node.js sdk
The npm package baidu-bcs receives a total of 0 weekly downloads. As such, baidu-bcs popularity was classified as not popular.
We found that baidu-bcs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.