OmniCloud is a unified interface for interacting with multiple cloud storage providers. This package simplifies the process of managing files across different cloud storage services by providing a single, consistent API.
- Unified API for multiple cloud storage providers
- TypeScript support
- Easy configuration setup
- Support for AWS S3
- Support for Azure Blob Storage
- Support for Google Cloud Storage
- Standardized error handling
- Pluggable architecture for adding custom providers
To install the package, use npm or yarn:
npm install omni-cloud
or
yarn add omni-cloud
Configure OmniCloud with the necessary credentials for your chosen cloud storage providers.
import { ProviderFactory, IStorageProvider } from 'omni-cloud';
const storageConfig = {
provider: 'aws',
aws: {
accessKeyId: 'your-access-key-id',
secretAccessKey: 'your-secret-access-key',
region: 'your-region',
bucketName: 'your-bucket-name',
},
};
const storage: IStorageProvider = ProviderFactory.createProvider(storageConfig);
async function uploadFile() {
try {
const result = await storage.upload('path/to/local/file.txt', 'remote/file.txt');
console.log('File uploaded successfully:', result);
} catch (error) {
console.error('Error uploading file:', error);
}
}
uploadFile();
async function downloadFile() {
try {
await storage.download('remote/file.txt', 'path/to/local/file.txt');
console.log('File downloaded successfully');
} catch (error) {
console.error('Error downloading file:', error);
}
}
downloadFile();
Uploads a file from the local filesystem to the specified remote path in the configured cloud storage provider.
Downloads a file from the specified remote path in the configured cloud storage provider to the local filesystem.
Lists the files and directories at the specified path in the configured cloud storage provider.
Deletes the file at the specified path in the configured cloud storage provider.
Contributions are welcome! Follow guide here
This project is licensed under the MIT License. See the LICENSE file for details.
Special thanks to all contributors and supporters of this project.