@bluelibs/runner 4.5.10 → 4.6.0-alpha
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 +7 -2
- package/dist/browser/index.mjs +4492 -0
- package/dist/browser/index.mjs.map +1 -0
- package/dist/{index.mjs → edge/index.mjs} +473 -306
- package/dist/edge/index.mjs.map +1 -0
- package/dist/index.unused.js +4344 -0
- package/dist/index.unused.js.map +1 -0
- package/dist/{index.cjs → node/index.cjs} +473 -312
- package/dist/node/index.cjs.map +1 -0
- package/dist/node/index.mjs +4492 -0
- package/dist/node/index.mjs.map +1 -0
- package/dist/universal/index.cjs +4524 -0
- package/dist/universal/index.cjs.map +1 -0
- package/dist/universal/index.mjs +4524 -0
- package/dist/universal/index.mjs.map +1 -0
- package/package.json +49 -11
- package/dist/index.cjs.map +0 -1
- package/dist/index.mjs.map +0 -1
- /package/dist/{index.d.ts → index.d.mts} +0 -0
package/README.md
CHANGED
|
@@ -19,8 +19,13 @@ _Or: How I Learned to Stop Worrying and Love Dependency Injection_
|
|
|
19
19
|
| [Migrate from 3.x.x to 4.x.x](https://github.com/bluelibs/runner/blob/main/readmes/MIGRATION.md) | Guide | Step-by-step upgrade from v3 to v4 |
|
|
20
20
|
| [Runner Lore](https://github.com/bluelibs/runner/blob/main/readmes) | Docs | Design notes, deep dives, and context |
|
|
21
21
|
| [Example: Express + OpenAPI + SQLite](https://github.com/bluelibs/runner/tree/main/examples/express-openapi-sqlite) | Example | Full Express + OpenAPI + SQLite demo |
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
|| [Example: Fastify + MikroORM + PostgreSQL](https://github.com/bluelibs/runner/tree/main/examples/fastify-mikroorm) | Example | Full Fastify + MikroORM + PostgreSQL demo |
|
|
23
|
+
|| [OpenAI Runner Chatbot](https://chatgpt.com/g/g-68b756abec648191aa43eaa1ea7a7945-runner?model=gpt-5-thinking) | Chatbot | Ask questions interactively, or feed README.md to your own AI |
|
|
24
|
+
|
|
25
|
+
### Community & Policies
|
|
26
|
+
- Code of Conduct: see [CODE_OF_CONDUCT](./CODE_OF_CONDUCT.md)
|
|
27
|
+
- Contributing: see [CONTRIBUTING](./CONTRIBUTING.md)
|
|
28
|
+
- Security: see [SECURITY](./SECURITY.md)
|
|
24
29
|
|
|
25
30
|
Welcome to BlueLibs Runner, where we've taken the chaos of modern application architecture and turned it into something that won't make you question your life choices at 3am. This isn't just another framework – it's your new best friend who actually understands that code should be readable, testable, and not require a PhD in abstract nonsense to maintain.
|
|
26
31
|
|