stream-to-etag 2.3.5 → 2.3.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 +25 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -30,6 +30,26 @@ npm install stream-to-etag
|
|
|
30
30
|
|
|
31
31
|
ETags compatible with s3, thanks to the author of [this post](https://stackoverflow.com/questions/12186993/what-is-the-algorithm-to-compute-the-amazon-s3-etag-for-a-file-larger-than-5gb#answer-19896823) for the breakdown of the algorithm.
|
|
32
32
|
|
|
33
|
+
## Education and Tutorials
|
|
34
|
+
|
|
35
|
+
1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
|
|
36
|
+
Get started with modular databases in minutes. Install prerequisites and deploy your first module.
|
|
37
|
+
|
|
38
|
+
2. 📦 [Modular PostgreSQL Development with Database Packages](https://launchql.com/learn/modular-postgres)
|
|
39
|
+
Learn to organize PostgreSQL projects with pgpm workspaces and reusable database modules.
|
|
40
|
+
|
|
41
|
+
3. ✏️ [Authoring Database Changes](https://launchql.com/learn/authoring-database-changes)
|
|
42
|
+
Master the workflow for adding, organizing, and managing database changes with pgpm.
|
|
43
|
+
|
|
44
|
+
4. 🧪 [End-to-End PostgreSQL Testing with TypeScript](https://launchql.com/learn/e2e-postgres-testing)
|
|
45
|
+
Master end-to-end PostgreSQL testing with ephemeral databases, RLS testing, and CI/CD automation.
|
|
46
|
+
|
|
47
|
+
5. ⚡ [Supabase Testing](https://launchql.com/learn/supabase)
|
|
48
|
+
TypeScript-native testing for Supabase with modern workflows.
|
|
49
|
+
|
|
50
|
+
6. 🔧 [Troubleshooting](https://launchql.com/learn/troubleshooting)
|
|
51
|
+
Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
52
|
+
|
|
33
53
|
## Related LaunchQL Tooling
|
|
34
54
|
|
|
35
55
|
### 🧪 Testing
|
|
@@ -71,6 +91,11 @@ ETags compatible with s3, thanks to the author of [this post](https://stackoverf
|
|
|
71
91
|
* [@launchql/query-builder](https://github.com/launchql/launchql/tree/main/packages/query-builder): **🏗️ SQL constructor** providing a robust TypeScript-based query builder for dynamic generation of `SELECT`, `INSERT`, `UPDATE`, `DELETE`, and stored procedure calls—supports advanced SQL features like `JOIN`, `GROUP BY`, and schema-qualified queries.
|
|
72
92
|
* [@launchql/query](https://github.com/launchql/launchql/tree/main/packages/query): **🧩 Fluent GraphQL builder** for PostGraphile schemas. ⚡ Schema-aware via introspection, 🧩 composable and ergonomic for building deeply nested queries.
|
|
73
93
|
|
|
94
|
+
## Credits
|
|
95
|
+
|
|
96
|
+
🛠 Built by LaunchQL — if you like our tools, please checkout and contribute to [our github ⚛️](https://github.com/launchql)
|
|
97
|
+
|
|
98
|
+
|
|
74
99
|
## Disclaimer
|
|
75
100
|
|
|
76
101
|
AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stream-to-etag",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.6",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "Calculates Etag/S3 MD5 sum given a readable stream. Uses the same algorithm that S3 uses to calculate the ETag.",
|
|
6
6
|
"main": "index.js",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"etag"
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"etag-hash": "^2.3.
|
|
39
|
+
"etag-hash": "^2.3.6"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "25b59a1403d95d86be14bd36c94e5af1689df1c3"
|
|
42
42
|
}
|