uuid-stream 2.2.4 → 2.2.5
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
|
@@ -46,6 +46,26 @@ readstream.pipe(stream);
|
|
|
46
46
|
|
|
47
47
|
Just like [node-uuid](https://github.com/kelektiv/node-uuid) for uuid v5, but removed the need to have all contents in-memory to be compatible with streams.
|
|
48
48
|
|
|
49
|
+
## Education and Tutorials
|
|
50
|
+
|
|
51
|
+
1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
|
|
52
|
+
Get started with modular databases in minutes. Install prerequisites and deploy your first module.
|
|
53
|
+
|
|
54
|
+
2. 📦 [Modular PostgreSQL Development with Database Packages](https://launchql.com/learn/modular-postgres)
|
|
55
|
+
Learn to organize PostgreSQL projects with pgpm workspaces and reusable database modules.
|
|
56
|
+
|
|
57
|
+
3. ✏️ [Authoring Database Changes](https://launchql.com/learn/authoring-database-changes)
|
|
58
|
+
Master the workflow for adding, organizing, and managing database changes with pgpm.
|
|
59
|
+
|
|
60
|
+
4. 🧪 [End-to-End PostgreSQL Testing with TypeScript](https://launchql.com/learn/e2e-postgres-testing)
|
|
61
|
+
Master end-to-end PostgreSQL testing with ephemeral databases, RLS testing, and CI/CD automation.
|
|
62
|
+
|
|
63
|
+
5. ⚡ [Supabase Testing](https://launchql.com/learn/supabase)
|
|
64
|
+
TypeScript-native testing for Supabase with modern workflows.
|
|
65
|
+
|
|
66
|
+
6. 🔧 [Troubleshooting](https://launchql.com/learn/troubleshooting)
|
|
67
|
+
Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
68
|
+
|
|
49
69
|
## Related LaunchQL Tooling
|
|
50
70
|
|
|
51
71
|
### 🧪 Testing
|
|
@@ -87,6 +107,11 @@ Just like [node-uuid](https://github.com/kelektiv/node-uuid) for uuid v5, but re
|
|
|
87
107
|
* [@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.
|
|
88
108
|
* [@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.
|
|
89
109
|
|
|
110
|
+
## Credits
|
|
111
|
+
|
|
112
|
+
🛠 Built by LaunchQL — if you like our tools, please checkout and contribute to [our github ⚛️](https://github.com/launchql)
|
|
113
|
+
|
|
114
|
+
|
|
90
115
|
## Disclaimer
|
|
91
116
|
|
|
92
117
|
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": "uuid-stream",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.5",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "A Transform stream that generates RFC-compliant UUID v5.",
|
|
6
6
|
"main": "index.js",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"uuid"
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"uuid-hash": "^2.2.
|
|
40
|
+
"uuid-hash": "^2.2.5"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "25b59a1403d95d86be14bd36c94e5af1689df1c3"
|
|
43
43
|
}
|