lean-s3 0.1.4 → 0.1.6
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 -2
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -79,7 +79,7 @@ BUT...
|
|
|
79
79
|
|
|
80
80
|
Due to its scalability, portability and AWS integrations, pre-signing URLs is `async` and performs poorly in high-performance scenarios. By taking different trade-offs, lean-s3 can presign URLs much faster. I promise! This is the reason you cannot use lean-s3 in the browser.
|
|
81
81
|
|
|
82
|
-
lean-s3 is currently about
|
|
82
|
+
lean-s3 is currently about 30x faster than AWS SDK when it comes to pre-signing URLs[^1]:
|
|
83
83
|
```
|
|
84
84
|
benchmark avg (min … max) p75 / p99
|
|
85
85
|
-------------------------------------------- ---------
|
|
@@ -159,4 +159,4 @@ const client = new S3Client({
|
|
|
159
159
|
Popular S3 provider missing? Open an issue or file a PR!
|
|
160
160
|
|
|
161
161
|
[^1]: Benchmark ran on a `13th Gen Intel(R) Core(TM) i7-1370P` using Node.js `23.11.0`. See `bench/` directory for the used benchmark.
|
|
162
|
-
[^2]: `git clone git@github.com:nikeee/lean-s3.git && cd lean-s3
|
|
162
|
+
[^2]: `git clone git@github.com:nikeee/lean-s3.git && cd lean-s3 && npm ci && cd bench && npm ci && npm start`
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "lean-s3",
|
|
3
3
|
"author": "Niklas Mollenhauer",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.6",
|
|
6
6
|
"description": "A server-side S3 API for the regular user.",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"s3",
|
|
@@ -27,20 +27,20 @@
|
|
|
27
27
|
"format": "biome format --write ./src && biome lint --write ./src && biome check --write ./src"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@aws-sdk/client-s3": "^3.
|
|
30
|
+
"@aws-sdk/client-s3": "^3.821.0",
|
|
31
31
|
"@biomejs/biome": "^1.9.4",
|
|
32
|
-
"@testcontainers/localstack": "^
|
|
33
|
-
"@testcontainers/minio": "^
|
|
34
|
-
"@types/node": "^22.15.
|
|
32
|
+
"@testcontainers/localstack": "^11.0.0",
|
|
33
|
+
"@testcontainers/minio": "^11.0.0",
|
|
34
|
+
"@types/node": "^22.15.29",
|
|
35
35
|
"expect": "^29.7.0",
|
|
36
|
-
"lefthook": "^1.11.
|
|
37
|
-
"typedoc": "^0.28.
|
|
36
|
+
"lefthook": "^1.11.13",
|
|
37
|
+
"typedoc": "^0.28.5"
|
|
38
38
|
},
|
|
39
39
|
"engines": {
|
|
40
40
|
"node": "^20.19.0 || ^22.14.0 || ^24.0.0"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"fast-xml-parser": "^5.2.
|
|
44
|
-
"undici": "^7.
|
|
43
|
+
"fast-xml-parser": "^5.2.3",
|
|
44
|
+
"undici": "^7.10.0"
|
|
45
45
|
}
|
|
46
46
|
}
|