
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
bvd-version-tmp-of-directory-to-s3
Advanced tools
CLI made by department-stockholm to simply upload a directory to Amazon S3
A CLI to simply upload a directory to Amazon S3.
Usage:
directory-to-s3 [options ...] <bucket>
Options:
-d --directory=DIR A directory which will be recursively uploaded [default: ./]
-p --pattern=PATTERN A glob pattern which will be uploaded
-P --prefix=PREFIX An optional prefix to prepend to each file key
-a --acl=ACL The ACL to assign to the uploaded files [default: public-read]
-v --verbose Print progress logs to STDOUT [default: false]
-s --silent Print no logs ever [default: false]
-h --help Show this usage
--version Show the version
Upload the current directory to your bucket:
$ directory-to-s3 my-bucket
Upload another directory to your bucket:
$ directory-to-s3 -d public my-bucket
Upload two directories to your bucket:
$ directory-to-s3 -d public -d tmp my-bucket
Upload files matching a pattern to your bucket:
$ directory-to-s3 -p public/**/*.js my-bucket
Upload files matching a pattern to your bucket with a key-prefix:
$ directory-to-s3 -p public/**/*.js -P scripts/ my-bucket
$ npm install -g directory-to-s3
Or to use it in a node project it can be installed locally:
$ npm install -D directory-to-s3
And then add a deploy
npm script like this:
{
...
"scripts": {
"deploy": "directory-to-s3 -p public/ project-bucket"
}
...
}
To use directory-to-s3
it needs some AWS credentials. And since the AWS SDK already provides this in a multitude of ways it's not part of this tool.
But two common ways to provide credentials are:
Environment variables
$ AWS_ACCESS_KEY_ID=111 AWS_SECRET_ACCESS_KEY=222 directory-to-s3 my-bucket
A credentials file
# ~/.aws/credentials
[default]
aws_access_key_id = 111
aws_secret_access_key = 222
[project-x]
aws_access_key_id = 333
aws_secret_access_key = 444
$ directory-to-s3 my-default-bucket
$ AWS_PROFILE=project-x directory-to-s3 my-project-x-bucket
FAQs
CLI made by department-stockholm to simply upload a directory to Amazon S3
The npm package bvd-version-tmp-of-directory-to-s3 receives a total of 0 weekly downloads. As such, bvd-version-tmp-of-directory-to-s3 popularity was classified as not popular.
We found that bvd-version-tmp-of-directory-to-s3 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
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.