@wiicode/s3-client 1.0.0 → 1.0.1
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.
- package/README.md +15 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,13 +4,25 @@ Official TypeScript/JavaScript SDK for WiiCode S3 Upload Service.
|
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
|
-
###
|
|
7
|
+
### NPM (Recommended)
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npm install
|
|
10
|
+
npm install @wiicode/s3-client
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
###
|
|
13
|
+
### Yarn
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
yarn add @wiicode/s3-client
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
### PNPM
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
pnpm add @wiicode/s3-client
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### Alternative: Install from Git Repository
|
|
14
26
|
|
|
15
27
|
```bash
|
|
16
28
|
# Install from development branch
|
|
@@ -20,16 +32,6 @@ npm install git+https://github.com/eeyuub/wiis3.service.git#development:packages
|
|
|
20
32
|
npm install git+https://github.com/eeyuub/wiis3.service.git#v1.0.0:packages/client
|
|
21
33
|
```
|
|
22
34
|
|
|
23
|
-
### Option C: Add to package.json
|
|
24
|
-
|
|
25
|
-
```json
|
|
26
|
-
{
|
|
27
|
-
"dependencies": {
|
|
28
|
-
"@wiicode/s3-client": "git+https://github.com/eeyuub/wiis3.service.git#development:packages/client"
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
```
|
|
32
|
-
|
|
33
35
|
---
|
|
34
36
|
|
|
35
37
|
## Quick Start
|