@stackweld/registry 0.2.0

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.
Files changed (115) hide show
  1. package/.turbo/turbo-build.log +4 -0
  2. package/.turbo/turbo-lint.log +436 -0
  3. package/.turbo/turbo-test.log +15 -0
  4. package/.turbo/turbo-typecheck.log +4 -0
  5. package/dist/__tests__/loader.test.d.ts +2 -0
  6. package/dist/__tests__/loader.test.d.ts.map +1 -0
  7. package/dist/__tests__/loader.test.js +126 -0
  8. package/dist/__tests__/loader.test.js.map +1 -0
  9. package/dist/index.d.ts +5 -0
  10. package/dist/index.d.ts.map +1 -0
  11. package/dist/index.js +4 -0
  12. package/dist/index.js.map +1 -0
  13. package/dist/learning-resources.d.ts +16 -0
  14. package/dist/learning-resources.d.ts.map +1 -0
  15. package/dist/learning-resources.js +461 -0
  16. package/dist/learning-resources.js.map +1 -0
  17. package/dist/loader.d.ts +18 -0
  18. package/dist/loader.d.ts.map +1 -0
  19. package/dist/loader.js +56 -0
  20. package/dist/loader.js.map +1 -0
  21. package/dist/schema.d.ts +147 -0
  22. package/dist/schema.d.ts.map +1 -0
  23. package/dist/schema.js +79 -0
  24. package/dist/schema.js.map +1 -0
  25. package/package.json +39 -0
  26. package/src/__tests__/loader.test.ts +162 -0
  27. package/src/index.ts +4 -0
  28. package/src/learning-resources.ts +488 -0
  29. package/src/loader.ts +67 -0
  30. package/src/schema.ts +79 -0
  31. package/src/technologies/auth/clerk.yaml +29 -0
  32. package/src/technologies/auth/lucia.yaml +19 -0
  33. package/src/technologies/auth/nextauth.yaml +31 -0
  34. package/src/technologies/auth/supabase-auth.yaml +32 -0
  35. package/src/technologies/backend/django.yaml +17 -0
  36. package/src/technologies/backend/echo.yaml +17 -0
  37. package/src/technologies/backend/express.yaml +17 -0
  38. package/src/technologies/backend/fastapi.yaml +17 -0
  39. package/src/technologies/backend/fastify.yaml +17 -0
  40. package/src/technologies/backend/flask.yaml +17 -0
  41. package/src/technologies/backend/gin.yaml +17 -0
  42. package/src/technologies/backend/hono.yaml +17 -0
  43. package/src/technologies/backend/laravel.yaml +32 -0
  44. package/src/technologies/backend/nestjs.yaml +30 -0
  45. package/src/technologies/backend/spring-boot.yaml +30 -0
  46. package/src/technologies/backend/trpc.yaml +20 -0
  47. package/src/technologies/databases/kafka.yaml +27 -0
  48. package/src/technologies/databases/mariadb.yaml +30 -0
  49. package/src/technologies/databases/mongodb.yaml +25 -0
  50. package/src/technologies/databases/mysql.yaml +25 -0
  51. package/src/technologies/databases/neon.yaml +18 -0
  52. package/src/technologies/databases/pocketbase.yaml +24 -0
  53. package/src/technologies/databases/postgresql.yaml +26 -0
  54. package/src/technologies/databases/redis.yaml +23 -0
  55. package/src/technologies/databases/sqlite.yaml +19 -0
  56. package/src/technologies/databases/supabase.yaml +27 -0
  57. package/src/technologies/databases/turso.yaml +19 -0
  58. package/src/technologies/devops/biome.yaml +19 -0
  59. package/src/technologies/devops/cypress.yaml +20 -0
  60. package/src/technologies/devops/devcontainers.yaml +18 -0
  61. package/src/technologies/devops/docker.yaml +19 -0
  62. package/src/technologies/devops/eslint.yaml +18 -0
  63. package/src/technologies/devops/github-actions.yaml +18 -0
  64. package/src/technologies/devops/jest.yaml +19 -0
  65. package/src/technologies/devops/playwright.yaml +19 -0
  66. package/src/technologies/devops/pnpm.yaml +22 -0
  67. package/src/technologies/devops/prettier.yaml +19 -0
  68. package/src/technologies/devops/storybook.yaml +28 -0
  69. package/src/technologies/devops/turborepo.yaml +20 -0
  70. package/src/technologies/devops/typescript.yaml +20 -0
  71. package/src/technologies/devops/vitest.yaml +20 -0
  72. package/src/technologies/devops/zod.yaml +18 -0
  73. package/src/technologies/frontend/angular.yaml +19 -0
  74. package/src/technologies/frontend/astro.yaml +19 -0
  75. package/src/technologies/frontend/htmx.yaml +18 -0
  76. package/src/technologies/frontend/nextjs.yaml +22 -0
  77. package/src/technologies/frontend/nuxt.yaml +18 -0
  78. package/src/technologies/frontend/qwik.yaml +28 -0
  79. package/src/technologies/frontend/react.yaml +19 -0
  80. package/src/technologies/frontend/remix.yaml +28 -0
  81. package/src/technologies/frontend/solidjs.yaml +29 -0
  82. package/src/technologies/frontend/svelte.yaml +19 -0
  83. package/src/technologies/frontend/sveltekit.yaml +18 -0
  84. package/src/technologies/frontend/vue.yaml +18 -0
  85. package/src/technologies/orms/django-orm.yaml +21 -0
  86. package/src/technologies/orms/drizzle.yaml +23 -0
  87. package/src/technologies/orms/mongoose.yaml +22 -0
  88. package/src/technologies/orms/prisma.yaml +23 -0
  89. package/src/technologies/orms/sqlalchemy.yaml +21 -0
  90. package/src/technologies/orms/typeorm.yaml +21 -0
  91. package/src/technologies/runtimes/bun.yaml +24 -0
  92. package/src/technologies/runtimes/deno.yaml +30 -0
  93. package/src/technologies/runtimes/go.yaml +27 -0
  94. package/src/technologies/runtimes/nodejs.yaml +31 -0
  95. package/src/technologies/runtimes/php.yaml +30 -0
  96. package/src/technologies/runtimes/python.yaml +30 -0
  97. package/src/technologies/runtimes/rust.yaml +23 -0
  98. package/src/technologies/services/adminer.yaml +24 -0
  99. package/src/technologies/services/grafana.yaml +29 -0
  100. package/src/technologies/services/mailpit.yaml +27 -0
  101. package/src/technologies/services/minio.yaml +28 -0
  102. package/src/technologies/services/nginx.yaml +25 -0
  103. package/src/technologies/services/pgadmin.yaml +26 -0
  104. package/src/technologies/services/portainer.yaml +24 -0
  105. package/src/technologies/services/prometheus.yaml +27 -0
  106. package/src/technologies/services/rabbitmq.yaml +28 -0
  107. package/src/technologies/services/traefik.yaml +28 -0
  108. package/src/technologies/styling/chakra-ui.yaml +21 -0
  109. package/src/technologies/styling/css-modules.yaml +17 -0
  110. package/src/technologies/styling/daisyui.yaml +20 -0
  111. package/src/technologies/styling/material-ui.yaml +22 -0
  112. package/src/technologies/styling/shadcn-ui.yaml +20 -0
  113. package/src/technologies/styling/tailwindcss.yaml +20 -0
  114. package/tsconfig.json +11 -0
  115. package/tsconfig.tsbuildinfo +1 -0
@@ -0,0 +1,19 @@
1
+ id: docker
2
+ name: Docker
3
+ category: devops
4
+ description: Container platform for building, shipping, and running applications
5
+ website: https://www.docker.com
6
+ versions:
7
+ - version: "27"
8
+ - version: "26"
9
+ - version: "25"
10
+ defaultVersion: "27"
11
+ requires: []
12
+ incompatibleWith: []
13
+ suggestedWith: [github-actions]
14
+ officialScaffold: null
15
+ dockerImage: null
16
+ envVars: {}
17
+ configFiles: [Dockerfile, docker-compose.yml, .dockerignore]
18
+ lastVerified: "2026-03-22"
19
+ tags: [docker, containers, devops, deployment]
@@ -0,0 +1,18 @@
1
+ id: eslint
2
+ name: ESLint
3
+ category: devops
4
+ description: Pluggable linting utility for identifying and fixing problems in JavaScript code
5
+ website: https://eslint.org
6
+ versions:
7
+ - version: "9"
8
+ - version: "8"
9
+ defaultVersion: "9"
10
+ requires: [nodejs]
11
+ incompatibleWith: [biome]
12
+ suggestedWith: [prettier, typescript]
13
+ officialScaffold: null
14
+ dockerImage: null
15
+ envVars: {}
16
+ configFiles: [eslint.config.js]
17
+ lastVerified: "2026-03-22"
18
+ tags: [eslint, linter, code-quality, devops]
@@ -0,0 +1,18 @@
1
+ id: github-actions
2
+ name: GitHub Actions
3
+ category: devops
4
+ description: CI/CD platform integrated with GitHub for automating build, test, and deploy workflows
5
+ website: https://github.com/features/actions
6
+ versions:
7
+ - version: "3"
8
+ - version: "2"
9
+ defaultVersion: "3"
10
+ requires: []
11
+ incompatibleWith: []
12
+ suggestedWith: [docker]
13
+ officialScaffold: null
14
+ dockerImage: null
15
+ envVars: {}
16
+ configFiles: [.github/workflows/ci.yml]
17
+ lastVerified: "2026-03-22"
18
+ tags: [github-actions, ci, cd, automation, devops]
@@ -0,0 +1,19 @@
1
+ id: jest
2
+ name: Jest
3
+ category: devops
4
+ description: Delightful JavaScript testing framework with a focus on simplicity
5
+ website: https://jestjs.io
6
+ versions:
7
+ - version: "30"
8
+ - version: "29"
9
+ - version: "28"
10
+ defaultVersion: "30"
11
+ requires: [nodejs]
12
+ incompatibleWith: [vitest]
13
+ suggestedWith: [typescript]
14
+ officialScaffold: null
15
+ dockerImage: null
16
+ envVars: {}
17
+ configFiles: [jest.config.ts, jest.config.js]
18
+ lastVerified: "2026-03-22"
19
+ tags: [jest, testing, unit-testing, devops]
@@ -0,0 +1,19 @@
1
+ id: playwright
2
+ name: Playwright
3
+ category: devops
4
+ description: End-to-end testing framework for modern web apps across all browsers
5
+ website: https://playwright.dev
6
+ versions:
7
+ - version: "1.51"
8
+ - version: "1.50"
9
+ - version: "1.49"
10
+ defaultVersion: "1.51"
11
+ requires: [nodejs]
12
+ incompatibleWith: []
13
+ suggestedWith: [typescript]
14
+ officialScaffold: "npm init playwright@latest"
15
+ dockerImage: null
16
+ envVars: {}
17
+ configFiles: [playwright.config.ts]
18
+ lastVerified: "2026-03-22"
19
+ tags: [playwright, testing, e2e, browser, devops]
@@ -0,0 +1,22 @@
1
+ id: pnpm
2
+ name: pnpm
3
+ category: devops
4
+ description: Fast, disk space efficient package manager for Node.js
5
+ website: https://pnpm.io
6
+ versions:
7
+ - version: "10"
8
+ - version: "9"
9
+ lts: true
10
+ - version: "8"
11
+ defaultVersion: "9"
12
+ requires: [nodejs]
13
+ incompatibleWith: []
14
+ suggestedWith: [typescript]
15
+ officialScaffold: null
16
+ dockerImage: null
17
+ envVars: {}
18
+ configFiles:
19
+ - pnpm-workspace.yaml
20
+ - .npmrc
21
+ lastVerified: "2026-03-22"
22
+ tags: [pnpm, package-manager, monorepo, nodejs]
@@ -0,0 +1,19 @@
1
+ id: prettier
2
+ name: Prettier
3
+ category: devops
4
+ description: Opinionated code formatter supporting many languages and integrations
5
+ website: https://prettier.io
6
+ versions:
7
+ - version: "3.5"
8
+ - version: "3.4"
9
+ - version: "3.3"
10
+ defaultVersion: "3.5"
11
+ requires: [nodejs]
12
+ incompatibleWith: [biome]
13
+ suggestedWith: [eslint, typescript]
14
+ officialScaffold: null
15
+ dockerImage: null
16
+ envVars: {}
17
+ configFiles: [.prettierrc]
18
+ lastVerified: "2026-03-22"
19
+ tags: [prettier, formatter, code-quality, devops]
@@ -0,0 +1,28 @@
1
+ id: storybook
2
+ name: Storybook
3
+ category: devops
4
+ description: UI development workshop for building and testing components in isolation
5
+ website: https://storybook.js.org
6
+ versions:
7
+ - version: "8.6"
8
+ - version: "8.5"
9
+ - version: "7.6"
10
+ eol: "2025-06-30"
11
+ defaultVersion: "8.6"
12
+ defaultPort: 6006
13
+ requires: [nodejs]
14
+ incompatibleWith: []
15
+ suggestedWith: [react, vue, svelte, angular]
16
+ officialScaffold: "npx storybook@latest init"
17
+ dockerImage: null
18
+ healthCheck:
19
+ endpoint: http://localhost:6006
20
+ interval: 10s
21
+ timeout: 5s
22
+ retries: 3
23
+ envVars: {}
24
+ configFiles:
25
+ - .storybook/main.ts
26
+ - .storybook/preview.ts
27
+ lastVerified: "2026-03-22"
28
+ tags: [storybook, ui, components, testing, documentation, development]
@@ -0,0 +1,20 @@
1
+ id: turborepo
2
+ name: Turborepo
3
+ category: devops
4
+ description: High-performance build system for JavaScript and TypeScript monorepos
5
+ website: https://turbo.build
6
+ versions:
7
+ - version: "2.8"
8
+ - version: "2.7"
9
+ defaultVersion: "2.8"
10
+ requires: [nodejs]
11
+ incompatibleWith: []
12
+ suggestedWith: [pnpm, typescript]
13
+ officialScaffold: null
14
+ dockerImage: null
15
+ envVars: {}
16
+ configFiles:
17
+ - turbo.json
18
+ - package.json
19
+ lastVerified: "2026-03-22"
20
+ tags: [turborepo, monorepo, build, caching, pipeline, devops]
@@ -0,0 +1,20 @@
1
+ id: typescript
2
+ name: TypeScript
3
+ category: devops
4
+ description: Strongly typed programming language that builds on JavaScript
5
+ website: https://www.typescriptlang.org
6
+ versions:
7
+ - version: "5.8"
8
+ - version: "5.7"
9
+ - version: "5.6"
10
+ - version: "5.5"
11
+ defaultVersion: "5.8"
12
+ requires: [nodejs]
13
+ incompatibleWith: []
14
+ suggestedWith: [vitest, biome]
15
+ officialScaffold: null
16
+ dockerImage: null
17
+ envVars: {}
18
+ configFiles: [tsconfig.json]
19
+ lastVerified: "2026-03-22"
20
+ tags: [typescript, types, language, devops]
@@ -0,0 +1,20 @@
1
+ id: vitest
2
+ name: Vitest
3
+ category: devops
4
+ description: Fast Vite-native unit test framework for modern JavaScript projects
5
+ website: https://vitest.dev
6
+ versions:
7
+ - version: "3.1"
8
+ - version: "3.0"
9
+ - version: "2.1"
10
+ - version: "1.6"
11
+ defaultVersion: "3.1"
12
+ requires: [nodejs]
13
+ incompatibleWith: [jest]
14
+ suggestedWith: [typescript]
15
+ officialScaffold: null
16
+ dockerImage: null
17
+ envVars: {}
18
+ configFiles: [vitest.config.ts]
19
+ lastVerified: "2026-03-22"
20
+ tags: [vitest, testing, unit-testing, vite, devops]
@@ -0,0 +1,18 @@
1
+ id: zod
2
+ name: Zod
3
+ category: devops
4
+ description: TypeScript-first schema declaration and validation library
5
+ website: https://zod.dev
6
+ versions:
7
+ - version: "3.24"
8
+ - version: "3.23"
9
+ defaultVersion: "3.24"
10
+ requires: [nodejs, typescript]
11
+ incompatibleWith: []
12
+ suggestedWith: [trpc, nextjs, react]
13
+ officialScaffold: null
14
+ dockerImage: null
15
+ envVars: {}
16
+ configFiles: []
17
+ lastVerified: "2026-03-22"
18
+ tags: [zod, validation, schema, typescript, parsing, typesafe]
@@ -0,0 +1,19 @@
1
+ id: angular
2
+ name: Angular
3
+ category: frontend
4
+ description: Platform for building web applications
5
+ website: https://angular.dev
6
+ versions:
7
+ - version: "19"
8
+ - version: "18"
9
+ defaultVersion: "19"
10
+ defaultPort: 4200
11
+ requires: [nodejs]
12
+ incompatibleWith: [react, vue, svelte, nextjs, nuxt, sveltekit, remix, astro, qwik, solidjs]
13
+ suggestedWith: [typescript]
14
+ officialScaffold: npx @angular/cli new
15
+ dockerImage: null
16
+ envVars: {}
17
+ configFiles: [angular.json, tsconfig.json]
18
+ lastVerified: "2026-03-22"
19
+ tags: [angular, frontend, enterprise, spa]
@@ -0,0 +1,19 @@
1
+ id: astro
2
+ name: Astro
3
+ category: frontend
4
+ description: Content-focused web framework with island architecture
5
+ website: https://astro.build
6
+ versions:
7
+ - version: "5"
8
+ - version: "4"
9
+ defaultVersion: "5"
10
+ defaultPort: 4321
11
+ requires: [nodejs]
12
+ incompatibleWith: [nextjs, nuxt, sveltekit, remix, angular, qwik, solidjs]
13
+ suggestedWith: [tailwindcss, typescript]
14
+ officialScaffold: npm create astro@latest
15
+ dockerImage: null
16
+ envVars: {}
17
+ configFiles: [astro.config.mjs]
18
+ lastVerified: "2026-03-22"
19
+ tags: [astro, static, islands, content]
@@ -0,0 +1,18 @@
1
+ id: htmx
2
+ name: HTMX
3
+ category: frontend
4
+ description: High power tools for HTML — access modern browser features directly from HTML
5
+ website: https://htmx.org
6
+ versions:
7
+ - version: "2.0"
8
+ - version: "1.9"
9
+ defaultVersion: "2.0"
10
+ requires: []
11
+ incompatibleWith: []
12
+ suggestedWith: [tailwindcss]
13
+ officialScaffold: null
14
+ dockerImage: null
15
+ envVars: {}
16
+ configFiles: []
17
+ lastVerified: "2026-03-22"
18
+ tags: [htmx, html, hypermedia, frontend, progressive-enhancement]
@@ -0,0 +1,22 @@
1
+ id: nextjs
2
+ name: Next.js
3
+ category: frontend
4
+ description: Full-stack React framework with SSR, SSG, and API routes
5
+ website: https://nextjs.org
6
+ versions:
7
+ - version: "15"
8
+ - version: "14"
9
+ defaultVersion: "15"
10
+ defaultPort: 3000
11
+ requires: [nodejs, react]
12
+ incompatibleWith: [nuxt, sveltekit, remix, astro, angular, qwik, solidjs]
13
+ suggestedWith: [typescript, tailwindcss, prisma]
14
+ officialScaffold: npx create-next-app@latest
15
+ dockerImage: null
16
+ envVars:
17
+ NEXT_PUBLIC_API_URL: http://localhost:8000
18
+ configFiles:
19
+ - next.config.js
20
+ - tsconfig.json
21
+ lastVerified: "2026-03-22"
22
+ tags: [nextjs, react, ssr, fullstack, frontend]
@@ -0,0 +1,18 @@
1
+ id: nuxt
2
+ name: Nuxt
3
+ category: frontend
4
+ description: Full-stack Vue framework
5
+ website: https://nuxt.com
6
+ versions:
7
+ - version: "3"
8
+ defaultVersion: "3"
9
+ defaultPort: 3000
10
+ requires: [nodejs, vue]
11
+ incompatibleWith: [nextjs, sveltekit, remix, astro, angular, qwik, solidjs]
12
+ suggestedWith: [typescript, tailwindcss]
13
+ officialScaffold: npx nuxi init
14
+ dockerImage: null
15
+ envVars: {}
16
+ configFiles: [nuxt.config.ts]
17
+ lastVerified: "2026-03-22"
18
+ tags: [nuxt, vue, ssr, fullstack]
@@ -0,0 +1,28 @@
1
+ id: qwik
2
+ name: Qwik
3
+ category: frontend
4
+ description: Instant-loading web framework with resumability and fine-grained lazy loading
5
+ website: https://qwik.dev
6
+ versions:
7
+ - version: "1.12"
8
+ - version: "1.11"
9
+ defaultVersion: "1.12"
10
+ defaultPort: 5173
11
+ requires: [nodejs]
12
+ incompatibleWith: [react, vue, svelte, angular, solidjs, nextjs, nuxt, sveltekit, remix, astro]
13
+ suggestedWith: [typescript, tailwindcss]
14
+ officialScaffold: "npm create qwik@latest"
15
+ dockerImage: null
16
+ healthCheck:
17
+ endpoint: http://localhost:5173
18
+ interval: 10s
19
+ timeout: 5s
20
+ retries: 3
21
+ envVars:
22
+ NODE_ENV: development
23
+ configFiles:
24
+ - package.json
25
+ - tsconfig.json
26
+ - vite.config.ts
27
+ lastVerified: "2026-03-22"
28
+ tags: [qwik, resumable, frontend, framework, performance]
@@ -0,0 +1,19 @@
1
+ id: react
2
+ name: React
3
+ category: frontend
4
+ description: Library for building user interfaces
5
+ website: https://react.dev
6
+ versions:
7
+ - version: "19"
8
+ - version: "18"
9
+ defaultVersion: "19"
10
+ defaultPort: 3000
11
+ requires: [nodejs]
12
+ incompatibleWith: [vue, svelte, angular, qwik, solidjs]
13
+ suggestedWith: [typescript, tailwindcss]
14
+ officialScaffold: null
15
+ dockerImage: null
16
+ envVars: {}
17
+ configFiles: []
18
+ lastVerified: "2026-03-22"
19
+ tags: [react, frontend, ui, spa]
@@ -0,0 +1,28 @@
1
+ id: remix
2
+ name: Remix
3
+ category: frontend
4
+ description: Full stack web framework focused on web standards and modern UX
5
+ website: https://remix.run
6
+ versions:
7
+ - version: "2.15"
8
+ - version: "2.14"
9
+ defaultVersion: "2.15"
10
+ defaultPort: 3000
11
+ requires: [nodejs, react]
12
+ incompatibleWith: [nextjs, nuxt, sveltekit, astro, angular, qwik, solidjs]
13
+ suggestedWith: [typescript, tailwindcss, prisma]
14
+ officialScaffold: "npx create-remix@latest"
15
+ dockerImage: null
16
+ healthCheck:
17
+ endpoint: http://localhost:3000
18
+ interval: 10s
19
+ timeout: 5s
20
+ retries: 3
21
+ envVars:
22
+ NODE_ENV: development
23
+ PORT: "3000"
24
+ configFiles:
25
+ - remix.config.js
26
+ - package.json
27
+ lastVerified: "2026-03-22"
28
+ tags: [remix, react, fullstack, framework, ssr, web-standards]
@@ -0,0 +1,29 @@
1
+ id: solidjs
2
+ name: Solid.js
3
+ category: frontend
4
+ description: Declarative, efficient, and flexible JavaScript library for building UIs
5
+ website: https://www.solidjs.com
6
+ versions:
7
+ - version: "1.9"
8
+ - version: "1.8"
9
+ defaultVersion: "1.9"
10
+ defaultPort: 3000
11
+ requires: [nodejs]
12
+ incompatibleWith: [react, vue, svelte, angular, qwik, nextjs, nuxt, sveltekit, remix, astro]
13
+ suggestedWith: [typescript, tailwindcss]
14
+ officialScaffold: "npx degit solidjs/templates/ts"
15
+ dockerImage: null
16
+ healthCheck:
17
+ endpoint: http://localhost:3000
18
+ interval: 10s
19
+ timeout: 5s
20
+ retries: 3
21
+ envVars:
22
+ NODE_ENV: development
23
+ PORT: "3000"
24
+ configFiles:
25
+ - package.json
26
+ - tsconfig.json
27
+ - vite.config.ts
28
+ lastVerified: "2026-03-22"
29
+ tags: [solidjs, reactive, frontend, ui, signals]
@@ -0,0 +1,19 @@
1
+ id: svelte
2
+ name: Svelte
3
+ category: frontend
4
+ description: Compile-time UI framework
5
+ website: https://svelte.dev
6
+ versions:
7
+ - version: "5"
8
+ - version: "4"
9
+ defaultVersion: "5"
10
+ defaultPort: 5173
11
+ requires: [nodejs]
12
+ incompatibleWith: [react, vue, angular, qwik, solidjs]
13
+ suggestedWith: [typescript, tailwindcss]
14
+ officialScaffold: null
15
+ dockerImage: null
16
+ envVars: {}
17
+ configFiles: [svelte.config.js]
18
+ lastVerified: "2026-03-22"
19
+ tags: [svelte, frontend, compiler]
@@ -0,0 +1,18 @@
1
+ id: sveltekit
2
+ name: SvelteKit
3
+ category: frontend
4
+ description: Full-stack Svelte framework
5
+ website: https://svelte.dev/docs/kit
6
+ versions:
7
+ - version: "2"
8
+ defaultVersion: "2"
9
+ defaultPort: 5173
10
+ requires: [nodejs, svelte]
11
+ incompatibleWith: [nextjs, nuxt, remix, astro, angular, qwik, solidjs]
12
+ suggestedWith: [typescript, tailwindcss, prisma]
13
+ officialScaffold: npx sv create
14
+ dockerImage: null
15
+ envVars: {}
16
+ configFiles: [svelte.config.js, vite.config.ts]
17
+ lastVerified: "2026-03-22"
18
+ tags: [sveltekit, svelte, ssr, fullstack]
@@ -0,0 +1,18 @@
1
+ id: vue
2
+ name: Vue.js
3
+ category: frontend
4
+ description: Progressive JavaScript framework
5
+ website: https://vuejs.org
6
+ versions:
7
+ - version: "3"
8
+ defaultVersion: "3"
9
+ defaultPort: 5173
10
+ requires: [nodejs]
11
+ incompatibleWith: [react, svelte, angular, qwik, solidjs]
12
+ suggestedWith: [typescript, tailwindcss]
13
+ officialScaffold: npm create vue@latest
14
+ dockerImage: null
15
+ envVars: {}
16
+ configFiles: [vite.config.ts]
17
+ lastVerified: "2026-03-22"
18
+ tags: [vue, frontend, spa]
@@ -0,0 +1,21 @@
1
+ id: django-orm
2
+ name: Django ORM
3
+ category: orm
4
+ description: Built-in ORM for Django with migrations, querysets, and model relationships
5
+ website: https://docs.djangoproject.com/en/5.1/topics/db/
6
+ versions:
7
+ - version: "5.1"
8
+ - version: "5.0"
9
+ - version: "4.2"
10
+ lts: true
11
+ defaultVersion: "5.1"
12
+ requires: [python, django]
13
+ incompatibleWith: [sqlalchemy]
14
+ suggestedWith: [postgresql, mysql]
15
+ officialScaffold: null
16
+ dockerImage: null
17
+ envVars: {}
18
+ configFiles:
19
+ - models.py
20
+ lastVerified: "2026-03-22"
21
+ tags: [django, orm, python, models, migrations, querysets]
@@ -0,0 +1,23 @@
1
+ id: drizzle
2
+ name: Drizzle ORM
3
+ category: orm
4
+ description: Lightweight TypeScript ORM with SQL-like syntax and zero dependencies
5
+ website: https://orm.drizzle.team
6
+ versions:
7
+ - {version: "0.40"}
8
+ - {version: "0.39"}
9
+ - {version: "0.38"}
10
+ - {version: "0.37"}
11
+ defaultVersion: "0.40"
12
+ requires: [nodejs]
13
+ incompatibleWith: [typeorm, prisma, mongoose]
14
+ suggestedWith: [postgresql, typescript]
15
+ officialScaffold: "npx drizzle-kit init"
16
+ dockerImage: null
17
+ healthCheck:
18
+ command: npx drizzle-kit check
19
+ envVars:
20
+ DATABASE_URL: postgresql://postgres:postgres@localhost:5432/app
21
+ configFiles: [drizzle.config.ts]
22
+ lastVerified: "2026-03-22"
23
+ tags: [drizzle, orm, typescript, database, migrations, sql, lightweight]
@@ -0,0 +1,22 @@
1
+ id: mongoose
2
+ name: Mongoose
3
+ category: orm
4
+ description: Elegant MongoDB object modeling for Node.js with schema validation
5
+ website: https://mongoosejs.com
6
+ versions:
7
+ - version: "8.10"
8
+ - version: "8.9"
9
+ - version: "7.8"
10
+ eol: "2025-12-31"
11
+ defaultVersion: "8.10"
12
+ requires: [nodejs, mongodb]
13
+ incompatibleWith: [prisma, drizzle, typeorm]
14
+ suggestedWith: [express, fastify, typescript]
15
+ officialScaffold: null
16
+ dockerImage: null
17
+ envVars:
18
+ MONGODB_URI: mongodb://localhost:27017/app
19
+ configFiles:
20
+ - package.json
21
+ lastVerified: "2026-03-22"
22
+ tags: [mongoose, mongodb, odm, nodejs, schema, models]
@@ -0,0 +1,23 @@
1
+ id: prisma
2
+ name: Prisma ORM
3
+ category: orm
4
+ description: Next-generation Node.js and TypeScript ORM with auto-generated query builder and migrations
5
+ website: https://www.prisma.io
6
+ versions:
7
+ - {version: "6.5", lts: true}
8
+ - {version: "6.4"}
9
+ - {version: "5.22"}
10
+ - {version: "5.21"}
11
+ defaultVersion: "6.5"
12
+ requires: [nodejs]
13
+ incompatibleWith: [typeorm, drizzle, mongoose]
14
+ suggestedWith: [postgresql, nextjs, typescript]
15
+ officialScaffold: "npx prisma init"
16
+ dockerImage: null
17
+ healthCheck:
18
+ command: npx prisma db execute --stdin <<< "SELECT 1"
19
+ envVars:
20
+ DATABASE_URL: postgresql://postgres:postgres@localhost:5432/app
21
+ configFiles: [prisma/schema.prisma]
22
+ lastVerified: "2026-03-22"
23
+ tags: [prisma, orm, typescript, database, migrations, query-builder]
@@ -0,0 +1,21 @@
1
+ id: sqlalchemy
2
+ name: SQLAlchemy
3
+ category: orm
4
+ description: The Python SQL toolkit and Object Relational Mapper for full database access
5
+ website: https://www.sqlalchemy.org
6
+ versions:
7
+ - {version: "2.0", lts: true}
8
+ - {version: "1.4"}
9
+ defaultVersion: "2.0"
10
+ requires: [python]
11
+ incompatibleWith: [django-orm]
12
+ suggestedWith: [fastapi, postgresql]
13
+ officialScaffold: null
14
+ dockerImage: null
15
+ healthCheck:
16
+ command: python -c "from sqlalchemy import create_engine; engine = create_engine('${DATABASE_URL}'); engine.connect()"
17
+ envVars:
18
+ DATABASE_URL: postgresql://postgres:postgres@localhost:5432/app
19
+ configFiles: [alembic.ini, alembic/]
20
+ lastVerified: "2026-03-22"
21
+ tags: [sqlalchemy, orm, python, database, migrations, alembic, sql]
@@ -0,0 +1,21 @@
1
+ id: typeorm
2
+ name: TypeORM
3
+ category: orm
4
+ description: ORM for TypeScript and JavaScript with Active Record and Data Mapper patterns
5
+ website: https://typeorm.io
6
+ versions:
7
+ - {version: "0.3", lts: true}
8
+ - {version: "0.2"}
9
+ defaultVersion: "0.3"
10
+ requires: [nodejs]
11
+ incompatibleWith: [prisma, drizzle, mongoose]
12
+ suggestedWith: [postgresql, typescript]
13
+ officialScaffold: "npx typeorm init"
14
+ dockerImage: null
15
+ healthCheck:
16
+ command: npx ts-node -e "import { DataSource } from 'typeorm'; new DataSource({type:'postgres',url:process.env.DATABASE_URL}).initialize()"
17
+ envVars:
18
+ DATABASE_URL: postgresql://postgres:postgres@localhost:5432/app
19
+ configFiles: [ormconfig.json, data-source.ts]
20
+ lastVerified: "2026-03-22"
21
+ tags: [typeorm, orm, typescript, database, migrations, active-record, data-mapper]