https://github.com/sakibrahmanchy/unistorage
A simple storage management system for multiple file storage providers
https://github.com/sakibrahmanchy/unistorage
javascript storage-api typescript
Last synced: 2 months ago
JSON representation
A simple storage management system for multiple file storage providers
- Host: GitHub
- URL: https://github.com/sakibrahmanchy/unistorage
- Owner: sakibrahmanchy
- Created: 2019-09-30T22:05:09.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T11:49:27.000Z (over 3 years ago)
- Last Synced: 2025-08-09T18:14:43.531Z (10 months ago)
- Topics: javascript, storage-api, typescript
- Language: TypeScript
- Size: 542 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# unistorage
A simple storage management system for multiple file storage providers
## Description
A typescript module intended to integrate several storage systems ( Google Drive, One Drive, Google Storage, AWS S3 buckets etc.)
in a single platform.
## Install
Run `npm install unistorage`
## Usage
##### Typescript
`import { unistorage } from unistorge;`
`const storage = unistorge('google-drive');'`
##### Regular
`var { unistorage } = require('unistorage');`
`var storage = unistorge('google-drive');'`
##### Implementation
`//storage.ListFiles().then()....`
`//storage.createDirectory().then()....`
## Test
Run `npm run test`