@vercube/storage 0.0.1-beta.2 → 0.0.1-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +31 -0
  2. package/package.json +5 -4
package/README.md ADDED
@@ -0,0 +1,31 @@
1
+ <div align="center">
2
+ <a href="https://vercube.dev/"><img src="../../.github/assets/logo.png" alt="Vite logo" width="200"></a>
3
+ <br>
4
+ <br>
5
+
6
+ # Vercube
7
+
8
+ Next generation HTTP framework
9
+
10
+ <a href="https://www.npmjs.com/package/@vercube/cli">
11
+ <img src="https://img.shields.io/npm/v/%40vercube%2Fcore?style=for-the-badge&logo=npm&color=%23767eff" alt="npm"/>
12
+ </a>
13
+ <a href="https://www.npmjs.com/package/@vercube/cli">
14
+ <img src="https://img.shields.io/npm/dm/%40vercube%2Fcore?style=for-the-badge&logo=npm&color=%23767eff" alt="npm"/>
15
+ </a>
16
+ <a href="https://github.com/vercube/vercube/blob/main/LICENSE" target="_blank">
17
+ <img src="https://img.shields.io/npm/l/%40vercube%2Fcore?style=for-the-badge&color=%23767eff" alt="License"/>
18
+ </a>
19
+ <br/>
20
+ <br/>
21
+ </div>
22
+
23
+ An ultra-efficient JavaScript server framework that runs anywhere - Node.js, Bun, or Deno - with unmatched flexibility and complete configurability for developers who refuse to sacrifice speed or control.
24
+
25
+ ## Storage Module
26
+ The Storage module provides a unified interface for managing file storage across different storage providers. It offers a flexible and provider-agnostic approach to handling file uploads, downloads, and management operations. The module supports various storage backends including local filesystem, Amazon S3, Google Cloud Storage, and Azure Blob Storage, all accessible through a consistent API. This abstraction allows developers to easily switch between storage providers without changing application code, while maintaining optimal performance and reliability.
27
+
28
+
29
+
30
+ ## <a name="documentation">📖 Documentation</a>
31
+ Comprehensive documentation is available at [vercube.dev](https://vercube.dev). There you'll find detailed module descriptions, project information, guides, and everything else you need to know about Vercube.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercube/storage",
3
- "version": "0.0.1-beta.2",
3
+ "version": "0.0.1-beta.3",
4
4
  "description": "Storage module for Vercube framework",
5
5
  "repository": "@vercube/storage",
6
6
  "license": "MIT",
@@ -17,11 +17,12 @@
17
17
  "module": "./dist/index.mjs",
18
18
  "types": "./dist/index.d.ts",
19
19
  "files": [
20
- "dist"
20
+ "dist",
21
+ "README.md"
21
22
  ],
22
23
  "dependencies": {
23
- "@vercube/di": "0.0.1-beta.2",
24
- "@vercube/logger": "0.0.1-beta.2"
24
+ "@vercube/di": "0.0.1-beta.3",
25
+ "@vercube/logger": "0.0.1-beta.3"
25
26
  },
26
27
  "publishConfig": {
27
28
  "access": "public"