
Security News
Frontier AI Is Now Critical Infrastructure
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.
@robinpath/s3
Advanced tools
S3-compatible object storage operations using AWS SDK
The s3 module lets you:
All functions are callable directly from RobinPath scripts with a simple, consistent API.
robinpath add @robinpath/s3
1. Set up credentials
s3.configure "your-credentials"
2. Upload an object to S3
s3.upload
| Function | Description |
|---|---|
s3.configure | Configure S3 client credentials and endpoint |
s3.upload | Upload an object to S3 |
s3.download | Download an object from S3 |
s3.remove | Delete an object from S3 |
s3.list | List objects in an S3 bucket |
s3.exists | Check if an object exists in S3 |
s3.copy | Copy an object within or between S3 buckets |
s3.move | Move an object (copy then delete source) |
s3.presignUrl | Generate a presigned URL for an S3 object |
s3.createBucket | Create a new S3 bucket |
s3.deleteBucket | Delete an S3 bucket |
s3.listBuckets | List all S3 buckets |
s3.getMetadata | Get metadata for an S3 object |
s3.setAcl | Set the ACL for an S3 object |
s3.upload
s3.download
s3.remove
import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/s3";
const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);
const result = await rp.executeScript(`
s3.configure "your-credentials"
s3.upload
`);
See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.
@robinpath/dropbox — Dropbox module for complementary functionality@robinpath/box — Box module for complementary functionality@robinpath/onedrive — OneDrive module for complementary functionality@robinpath/google-drive — Google Drive module for complementary functionality@robinpath/json — JSON module for complementary functionalityMIT
FAQs
S3-compatible object storage operations using AWS Signature V4 over HTTPS
The npm package @robinpath/s3 receives a total of 15 weekly downloads. As such, @robinpath/s3 popularity was classified as not popular.
We found that @robinpath/s3 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers 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
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.

Security News
AI agents are pulling packages into environments no scanner is watching, creating exposure before security teams can see it.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.