
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
highoutput-cloud-storage
Advanced tools
string Scope in the single bucket where the file is going to be stored. This should be equivalent to your app name.string Specified region. Default value is 'ap-southeast-1'.string AWS Access Key ID.string AWS Secret Access Key.import CloudStorage from 'highoutput-cloud-storage';
const storage = new CloudStorage({
scope: 'my-app-name',
accessKey: 'AKIAIOSFODNN7EXAMPLE',
secretKey: 'wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY',
});
string Filename (with path). Value will be normalized and leading '/' will be removed.string|number Time validity of credential. Input should be following ms module format.number Upper file size limit to be uploaded in MB. Deafult value is 10.number Lower file size limit to be uploaded in MB. Should be greater than 0 and lesser than upperSizeLimit. Default value is 1.const info = storage.getUploadCredentials({
filename: 'some/filename.js',
});
console.log(info);
// {
// url: 'https://highoutput-public.s3.amazonaws.com/my-app-name/some/filename.js',
// params: {
// key: 'my-app-name/some/filename.js',
// acl: 'public-read',
// success_action_status: '201',
// policy: 'eyJleHBpcmF0aW9uIjoiMjAxOC0wNS0wNFQwMzoxMTo1Ni44NTBaIiwiY29uZG==',
// 'x-amz-algorithm': 'AWS4-HMAC-SHA256',
// 'x-amz-credential': 'AKIAIOSFODNN7EXAMPLE/20180504/ap-southeast-1/s3/aws4_request',
// 'x-amz-date': '20180504T000000Z',
// 'x-amz-signature': '758f600aac46de0bcf68e1fb47e0646afa7c306c5006a8'
// }
// }
FAQs
Cloud storage using Amazon S3.
The npm package highoutput-cloud-storage receives a total of 2 weekly downloads. As such, highoutput-cloud-storage popularity was classified as not popular.
We found that highoutput-cloud-storage 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.