High availability, Performance, and Simplicity are the main focus of this tiny Node client to request AWS S3 API or the OpenStack Swift Object Storage API. It was initially made to request OVHCloud, but it can be used for any Server/Cloud provider.
- 🦄 Simple to use - Only 10 core methods:
uploadFile,downloadFile,deleteFile,listFiles,listBuckets,headBucket,setFileMetadata,getFileMetadata,deleteFilesandrequestfor custom requests. A few helpers come on top:setTimeout,setConfig/getConfig,setLogFunctionandsetRockReqDefaults/getRockReqDefaults. - 🚀 Performance - Vanilla JS + Only 2 dependencies rock-req as HTTP client and aws4 for signing S3 requests.
- 🌎 High availability - Provide one or a list of storages credentials: the SDK will switch storage if something goes wrong (Server/DNS not responding, timeout, error 500, too many redirects, authentication error, and more...). As soon as the main storage is available, the SDK returns to the main storage.
- ✨ Reconnect automatically - If a request fails due to an authentication token expiration, the SDK fetches a new authentication token and retries the initial request with it (Swift Storage only).
- ✅ Battle-tested - Used in production against hundreds of TBs of file uploads, downloads and deletes, and covered by an extensive test suite.
- 👉 Convert XML/JSON responses to JS - XML/JSON responses are automatically converted into
Objects/Arrays(only for:listFiles,listBucketsandErrors). - 🚩 Mixing S3 and Swift credentials is not supported - When initialising the Tiny SDK client, provide only a list of S3 or a list of Swift credentials, switching from one storage system to another is not supported.
$ npm install tiny-storage-clientRequires Node.js 20 or higher.
Install and setup in less than 2 minutes:
| Swift API | S3 API | Method | Description |
|---|---|---|---|
| ✅ example | ✅ example | uploadFile |
Upload a file from a Buffer or file absolute path. |
| ✅ example | ✅ example | downloadFile |
Download a file as Buffer or Stream |
| ✅ example | ✅ example | deleteFile |
Delete a file |
| ✅ example | ✅ example | deleteFiles |
Bulk delete files (1000 max/per request) |
| ✅ example | ✅ example | listFiles |
List files (1000 max/per requests) use query parameters for pagination |
| ✅ example | ✅ example | getFileMetadata |
Fetch custom metadata |
| ✅ example | ✅ example | setFileMetadata |
Set custom file metadata |
| ✅ example | ✅ example | headBucket |
Determine if a bucket exists and you have permission to access it |
| ✅ example | ✅ example | listBuckets |
Returns a list of all buckets owned by the authenticated sender of the request. |
| ✅ example | ✅ example | request |
Create custom requests |
| ✅ example | ❌ | connection |
Connection is required only for Openstack Swift Object storage to get a unique auth token |
| ✅ example | ✅ example | Bucket Alias | Simplify requests by using bucket alias |
The following example is an initialisation of the SDK client with a list of S3 credentials and a request to download a file. If something goes wrong when downloading the file, the SDK will switch storage and retry to download with the second credentials. As soon as the first storage is available, the SDK returns to the main storage
const storageClient = require('tiny-storage-client');
const s3storage = storageClient([{
accessKeyId : 'accessKeyId',
secretAccessKey: 'secretAccessKey',
url : 's3.gra.io.cloud.ovh.net',
region : 'gra'
},
{
accessKeyId : 'accessKeyId',
secretAccessKey: 'secretAccessKey',
url : 's3.eu-west-3.amazonaws.com',
region : 'eu-west-3'
}])
s3storage.downloadFile('bucketName', 'filename.pdf', (err, resp) => {
if (err) {
return console.log("Error on download: ", err);
}
/**
* Request response:
* - resp.body => downloaded file as Buffer
* - resp.headers
* - resp.statusCode
*/
})The same client is used for OpenStack Swift, only the credentials differ. Swift requires calling connection once
to fetch an auth token before any other request (the SDK renews it automatically when it expires).
const storageClient = require('tiny-storage-client');
const swiftStorage = storageClient([{
username: 'username',
password: 'password',
authUrl : 'https://auth.cloud.ovh.net/v3',
region : 'GRA'
},
{
username: 'username',
password: 'password',
authUrl : 'https://auth.cloud.ovh.net/v3',
region : 'SBG'
}])
swiftStorage.connection((err) => {
if (err) {
return console.log("Error on connection: ", err);
}
swiftStorage.downloadFile('containerName', 'filename.pdf', (err, resp) => {
if (err) {
return console.log("Error on download: ", err);
}
/**
* Request response:
* - resp.body => downloaded file as Buffer
* - resp.headers
* - resp.statusCode
*/
})
})Install
$ npm installTo run all the tests:
$ npm run testContributions, issues and feature requests are welcome!
Feel free to check issues page.
Give a ⭐️ if this project helped you!
This package is maintained by Carbone: