Modules@robinpath/s3

@robinpath/s3

0.1.0Public

S3-compatible object storage operations using AWS SDK

@robinpath/s3

S3-compatible object storage operations using AWS SDK

Category Functions Auth License

Why use this module?

The s3 module lets you:

  • Upload an object to S3
  • Download an object from S3
  • Delete an object from S3
  • List objects in an S3 bucket
  • Check if an object exists in S3

All functions are callable directly from RobinPath scripts with a simple, consistent API.

Installation

npm install @robinpath/s3

Quick Start

1. Set up credentials

s3.configure "your-credentials"

2. Upload an object to S3

s3.upload

Available Functions

FunctionDescription
s3.configureConfigure S3 client credentials and endpoint
s3.uploadUpload an object to S3
s3.downloadDownload an object from S3
s3.removeDelete an object from S3
s3.listList objects in an S3 bucket
s3.existsCheck if an object exists in S3
s3.copyCopy an object within or between S3 buckets
s3.moveMove an object (copy then delete source)
s3.presignUrlGenerate a presigned URL for an S3 object
s3.createBucketCreate a new S3 bucket
s3.deleteBucketDelete an S3 bucket
s3.listBucketsList all S3 buckets
s3.getMetadataGet metadata for an S3 object
s3.setAclSet the ACL for an S3 object

Examples

Upload an object to S3

s3.upload

Download an object from S3

s3.download

Delete an object from S3

s3.remove

Integration with RobinPath

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
`);

Full API Reference

See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.

Related Modules

License

MIT

Versions (1)

VersionTagPublished
0.1.0latestyesterday
Install
$ robinpath install @robinpath/s3
Version0.1.0
LicenseMIT
Unpacked Size5.8 KB
Versions1
Weekly Downloads0
Total Downloads0
Stars0
Last Publishyesterday
Createdyesterday

Category

devops