
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
oss-js-client
Advanced tools
npm install --save oss-js-client
var OSS = require('oss-js-client')
var ossClient = new OSS.Client({
endPoint: '127.0.0.1',
port: 9000,
useSSL: false, // 启动https
accessKey: 'username',
secretKey: 'password'
});
var OSS = require('oss-js-client')
// Instantiate the oss client with the endpoint
// and access keys as shown below.
var ossClient = new OSS.Client({
endPoint: '127.0.0.1',
port: 9000,
useSSL: false,
accessKey: 'username',
secretKey: 'password'
});
// File that needs to be uploaded.
var file = '/tmp/file.txt'
// Make a bucket called mybucket.
ossClient.makeBucket('mybucket', 'us-east-1', function(err) {
if (err) return console.log(err)
console.log('Bucket created successfully in "us-east-1".')
var metaData = {
'Content-Type': 'application/octet-stream',
'X-Amz-Meta-Testing': 1234,
'example': 5678
}
// Using fPutObject API upload your file to the bucket mybucket.
ossClient.fPutObject('mybucket', 'file.txt', file, metaData, function(err, etag) {
if (err) return console.log(err)
console.log('File uploaded successfully.')
});
});
FAQs
S3 Compatible Cloud Storage client
The npm package oss-js-client receives a total of 0 weekly downloads. As such, oss-js-client popularity was classified as not popular.
We found that oss-js-client 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
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.