@archildata/client 0.1.2 → 0.1.4
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 +2 -0
- package/package.json +8 -7
package/README.md
CHANGED
|
@@ -22,6 +22,8 @@ This package includes pre-built binaries for:
|
|
|
22
22
|
|
|
23
23
|
Other platforms are not currently supported.
|
|
24
24
|
|
|
25
|
+
> **Note:** For best performance, run your application in the same region as your Archil disk (e.g., if your disk is in `aws-us-east-1`, deploy your app to AWS us-east-1).
|
|
26
|
+
|
|
25
27
|
## Usage
|
|
26
28
|
|
|
27
29
|
```typescript
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@archildata/client",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "High-performance Node.js client for Archil distributed filesystem",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -35,7 +35,8 @@
|
|
|
35
35
|
"files": [
|
|
36
36
|
"index.js",
|
|
37
37
|
"index.d.ts",
|
|
38
|
-
"*.node"
|
|
38
|
+
"*.node",
|
|
39
|
+
"README.md"
|
|
39
40
|
],
|
|
40
41
|
"repository": {
|
|
41
42
|
"type": "git",
|
|
@@ -49,10 +50,10 @@
|
|
|
49
50
|
"native"
|
|
50
51
|
],
|
|
51
52
|
"optionalDependencies": {
|
|
52
|
-
"@archildata/client-win32-x64-msvc": "0.1.
|
|
53
|
-
"@archildata/client-darwin-x64": "0.1.
|
|
54
|
-
"@archildata/client-linux-x64-gnu": "0.1.
|
|
55
|
-
"@archildata/client-darwin-arm64": "0.1.
|
|
56
|
-
"@archildata/client-linux-arm64-gnu": "0.1.
|
|
53
|
+
"@archildata/client-win32-x64-msvc": "0.1.4",
|
|
54
|
+
"@archildata/client-darwin-x64": "0.1.4",
|
|
55
|
+
"@archildata/client-linux-x64-gnu": "0.1.4",
|
|
56
|
+
"@archildata/client-darwin-arm64": "0.1.4",
|
|
57
|
+
"@archildata/client-linux-arm64-gnu": "0.1.4"
|
|
57
58
|
}
|
|
58
59
|
}
|