@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,31 @@
1
+ id: nextauth
2
+ name: NextAuth.js (Auth.js)
3
+ category: auth
4
+ description: Authentication library for Next.js with OAuth, credentials, and database session support
5
+ website: https://authjs.dev
6
+ versions:
7
+ - version: "5.0"
8
+ - version: "4.24"
9
+ lts: true
10
+ - version: "4.23"
11
+ - version: "3.29"
12
+ eol: "2023-01-01"
13
+ defaultVersion: "5.0"
14
+ requires: [nodejs, nextjs]
15
+ incompatibleWith: [clerk, supabase-auth, lucia]
16
+ suggestedWith: [prisma, postgresql]
17
+ officialScaffold: null
18
+ dockerImage: null
19
+ healthCheck:
20
+ endpoint: /api/auth/session
21
+ interval: "30s"
22
+ timeout: "5s"
23
+ retries: 3
24
+ envVars:
25
+ NEXTAUTH_SECRET: your-secret-key
26
+ NEXTAUTH_URL: http://localhost:3000
27
+ configFiles:
28
+ - auth.ts
29
+ - "[...nextauth].ts"
30
+ lastVerified: "2026-03-22"
31
+ tags: [auth, nextauth, authjs, oauth, jwt, session, authentication]
@@ -0,0 +1,32 @@
1
+ id: supabase-auth
2
+ name: Supabase Auth
3
+ category: auth
4
+ description: Open-source authentication with row-level security, social logins, and magic links powered by GoTrue
5
+ website: https://supabase.com/auth
6
+ versions:
7
+ - version: "2.72"
8
+ - version: "2.65"
9
+ lts: true
10
+ - version: "1.0"
11
+ eol: "2024-01-01"
12
+ defaultVersion: "2.72"
13
+ defaultPort: 54321
14
+ requires: [nodejs]
15
+ incompatibleWith: [nextauth, clerk, lucia]
16
+ suggestedWith: [postgresql, nextjs, react]
17
+ officialScaffold: npx create-next-app --example with-supabase
18
+ dockerImage: supabase/gotrue
19
+ healthCheck:
20
+ endpoint: /auth/v1/health
21
+ interval: "30s"
22
+ timeout: "5s"
23
+ retries: 3
24
+ envVars:
25
+ NEXT_PUBLIC_SUPABASE_URL: http://localhost:54321
26
+ NEXT_PUBLIC_SUPABASE_ANON_KEY: your-anon-key
27
+ SUPABASE_SERVICE_ROLE_KEY: your-service-role-key
28
+ configFiles:
29
+ - supabase/config.toml
30
+ - lib/supabase.ts
31
+ lastVerified: "2026-03-22"
32
+ tags: [auth, supabase, authentication, rls, oauth, magic-link, open-source]
@@ -0,0 +1,17 @@
1
+ id: django
2
+ name: Django
3
+ category: backend
4
+ description: High-level Python web framework
5
+ website: https://djangoproject.com
6
+ versions: [{version: "5.1"}, {version: "5.0"}]
7
+ defaultVersion: "5.1"
8
+ defaultPort: 8000
9
+ requires: [python]
10
+ incompatibleWith: [fastapi, flask]
11
+ suggestedWith: [postgresql]
12
+ officialScaffold: django-admin startproject
13
+ dockerImage: null
14
+ envVars: {DJANGO_SETTINGS_MODULE: "config.settings", DEBUG: "True"}
15
+ configFiles: [manage.py, requirements.txt]
16
+ lastVerified: "2026-03-22"
17
+ tags: [django, python, fullstack, batteries]
@@ -0,0 +1,17 @@
1
+ id: echo
2
+ name: Echo
3
+ category: backend
4
+ description: High performance Go web framework
5
+ website: https://echo.labstack.com
6
+ versions: [{version: "4"}]
7
+ defaultVersion: "4"
8
+ defaultPort: 8080
9
+ requires: [go]
10
+ incompatibleWith: [gin]
11
+ suggestedWith: [postgresql]
12
+ officialScaffold: null
13
+ dockerImage: null
14
+ envVars: {PORT: "8080"}
15
+ configFiles: [go.mod]
16
+ lastVerified: "2026-03-22"
17
+ tags: [echo, go, api]
@@ -0,0 +1,17 @@
1
+ id: express
2
+ name: Express
3
+ category: backend
4
+ description: Minimal Node.js web framework
5
+ website: https://expressjs.com
6
+ versions: [{version: "5"}, {version: "4"}]
7
+ defaultVersion: "5"
8
+ defaultPort: 3001
9
+ requires: [nodejs]
10
+ incompatibleWith: [nestjs, hono, fastify]
11
+ suggestedWith: [typescript, postgresql]
12
+ officialScaffold: null
13
+ dockerImage: null
14
+ envVars: {PORT: "3001"}
15
+ configFiles: []
16
+ lastVerified: "2026-03-22"
17
+ tags: [express, nodejs, api, rest]
@@ -0,0 +1,17 @@
1
+ id: fastapi
2
+ name: FastAPI
3
+ category: backend
4
+ description: Modern Python web framework with automatic API docs
5
+ website: https://fastapi.tiangolo.com
6
+ versions: [{version: "0.115"}]
7
+ defaultVersion: "0.115"
8
+ defaultPort: 8000
9
+ requires: [python]
10
+ incompatibleWith: [django, flask]
11
+ suggestedWith: [postgresql, sqlalchemy, redis]
12
+ officialScaffold: null
13
+ dockerImage: null
14
+ envVars: {HOST: "0.0.0.0", PORT: "8000"}
15
+ configFiles: [requirements.txt, pyproject.toml]
16
+ lastVerified: "2026-03-22"
17
+ tags: [fastapi, python, api, async]
@@ -0,0 +1,17 @@
1
+ id: fastify
2
+ name: Fastify
3
+ category: backend
4
+ description: Fast and low overhead Node.js web framework
5
+ website: https://fastify.dev
6
+ versions: [{version: "5"}, {version: "4"}]
7
+ defaultVersion: "5"
8
+ defaultPort: 3001
9
+ requires: [nodejs]
10
+ incompatibleWith: [nestjs, hono, express]
11
+ suggestedWith: [typescript, postgresql, prisma]
12
+ officialScaffold: npx fastify-cli generate
13
+ dockerImage: null
14
+ envVars: {PORT: "3001"}
15
+ configFiles: []
16
+ lastVerified: "2026-03-22"
17
+ tags: [fastify, nodejs, api, fast]
@@ -0,0 +1,17 @@
1
+ id: flask
2
+ name: Flask
3
+ category: backend
4
+ description: Lightweight Python web framework
5
+ website: https://flask.palletsprojects.com
6
+ versions: [{version: "3.1"}, {version: "3.0"}]
7
+ defaultVersion: "3.1"
8
+ defaultPort: 5000
9
+ requires: [python]
10
+ incompatibleWith: [fastapi, django]
11
+ suggestedWith: [postgresql, sqlalchemy]
12
+ officialScaffold: null
13
+ dockerImage: null
14
+ envVars: {FLASK_APP: "app", FLASK_ENV: "development"}
15
+ configFiles: [requirements.txt]
16
+ lastVerified: "2026-03-22"
17
+ tags: [flask, python, micro, api]
@@ -0,0 +1,17 @@
1
+ id: gin
2
+ name: Gin
3
+ category: backend
4
+ description: HTTP web framework for Go
5
+ website: https://gin-gonic.com
6
+ versions: [{version: "1.10"}]
7
+ defaultVersion: "1.10"
8
+ defaultPort: 8080
9
+ requires: [go]
10
+ incompatibleWith: [echo]
11
+ suggestedWith: [postgresql]
12
+ officialScaffold: null
13
+ dockerImage: null
14
+ envVars: {GIN_MODE: "debug", PORT: "8080"}
15
+ configFiles: [go.mod]
16
+ lastVerified: "2026-03-22"
17
+ tags: [gin, go, api, fast]
@@ -0,0 +1,17 @@
1
+ id: hono
2
+ name: Hono
3
+ category: backend
4
+ description: Ultrafast web framework for the edge
5
+ website: https://hono.dev
6
+ versions: [{version: "4"}]
7
+ defaultVersion: "4"
8
+ defaultPort: 3001
9
+ requires: [nodejs]
10
+ incompatibleWith: [express, fastify, nestjs]
11
+ suggestedWith: [typescript, bun]
12
+ officialScaffold: npm create hono@latest
13
+ dockerImage: null
14
+ envVars: {PORT: "3001"}
15
+ configFiles: []
16
+ lastVerified: "2026-03-22"
17
+ tags: [hono, edge, api, fast]
@@ -0,0 +1,32 @@
1
+ id: laravel
2
+ name: Laravel
3
+ category: backend
4
+ description: PHP web application framework with expressive, elegant syntax
5
+ website: https://laravel.com
6
+ versions:
7
+ - version: "12"
8
+ - version: "11"
9
+ lts: true
10
+ defaultVersion: "12"
11
+ defaultPort: 8000
12
+ requires: [php]
13
+ incompatibleWith: []
14
+ suggestedWith: [mysql, redis, nginx]
15
+ officialScaffold: "composer create-project laravel/laravel"
16
+ dockerImage: null
17
+ healthCheck:
18
+ endpoint: http://localhost:8000
19
+ interval: 10s
20
+ timeout: 5s
21
+ retries: 3
22
+ envVars:
23
+ APP_ENV: local
24
+ APP_DEBUG: "true"
25
+ APP_KEY: ""
26
+ DB_CONNECTION: mysql
27
+ configFiles:
28
+ - .env
29
+ - composer.json
30
+ - artisan
31
+ lastVerified: "2026-03-22"
32
+ tags: [laravel, php, backend, framework, mvc, eloquent]
@@ -0,0 +1,30 @@
1
+ id: nestjs
2
+ name: NestJS
3
+ category: backend
4
+ description: Progressive Node.js framework for building scalable server-side applications
5
+ website: https://nestjs.com
6
+ versions:
7
+ - version: "11"
8
+ - version: "10"
9
+ lts: true
10
+ defaultVersion: "11"
11
+ defaultPort: 3000
12
+ requires: [nodejs, typescript]
13
+ incompatibleWith: [express, fastify, hono]
14
+ suggestedWith: [prisma, postgresql]
15
+ officialScaffold: "npx @nestjs/cli new"
16
+ dockerImage: null
17
+ healthCheck:
18
+ endpoint: http://localhost:3000
19
+ interval: 10s
20
+ timeout: 5s
21
+ retries: 3
22
+ envVars:
23
+ NODE_ENV: development
24
+ PORT: "3000"
25
+ configFiles:
26
+ - nest-cli.json
27
+ - tsconfig.json
28
+ - package.json
29
+ lastVerified: "2026-03-22"
30
+ tags: [nestjs, nodejs, typescript, backend, framework, enterprise]
@@ -0,0 +1,30 @@
1
+ id: spring-boot
2
+ name: Spring Boot
3
+ category: backend
4
+ description: Production-ready Java framework for building stand-alone Spring applications
5
+ website: https://spring.io/projects/spring-boot
6
+ versions:
7
+ - version: "3.4"
8
+ - version: "3.3"
9
+ lts: true
10
+ defaultVersion: "3.4"
11
+ defaultPort: 8080
12
+ requires: [] # Note: Java/JDK is required externally but is not modeled in this registry
13
+ incompatibleWith: []
14
+ suggestedWith: [postgresql, redis]
15
+ officialScaffold: null
16
+ dockerImage: null
17
+ healthCheck:
18
+ endpoint: http://localhost:8080/actuator/health
19
+ interval: 10s
20
+ timeout: 5s
21
+ retries: 3
22
+ envVars:
23
+ SPRING_PROFILES_ACTIVE: dev
24
+ SERVER_PORT: "8080"
25
+ configFiles:
26
+ - pom.xml
27
+ - application.properties
28
+ - application.yml
29
+ lastVerified: "2026-03-22"
30
+ tags: [spring-boot, java, backend, framework, enterprise, jvm]
@@ -0,0 +1,20 @@
1
+ id: trpc
2
+ name: tRPC
3
+ category: backend
4
+ description: End-to-end typesafe APIs made easy with TypeScript
5
+ website: https://trpc.io
6
+ versions:
7
+ - version: "11"
8
+ - version: "10"
9
+ defaultVersion: "11"
10
+ requires: [nodejs, typescript]
11
+ incompatibleWith: []
12
+ suggestedWith: [nextjs, react, prisma]
13
+ officialScaffold: null
14
+ dockerImage: null
15
+ envVars: {}
16
+ configFiles:
17
+ - package.json
18
+ - tsconfig.json
19
+ lastVerified: "2026-03-22"
20
+ tags: [trpc, typescript, api, rpc, typesafe, fullstack]
@@ -0,0 +1,27 @@
1
+ id: kafka
2
+ name: Apache Kafka
3
+ category: database
4
+ description: Distributed event streaming platform for high-throughput data pipelines
5
+ website: https://kafka.apache.org
6
+ versions:
7
+ - version: "3.9"
8
+ - version: "3.8"
9
+ defaultVersion: "3.9"
10
+ defaultPort: 9092
11
+ requires: []
12
+ incompatibleWith: []
13
+ suggestedWith: []
14
+ officialScaffold: null
15
+ dockerImage: confluentinc/cp-kafka:7.8.0
16
+ healthCheck:
17
+ command: kafka-broker-api-versions --bootstrap-server localhost:9092
18
+ interval: 15s
19
+ timeout: 10s
20
+ retries: 5
21
+ envVars:
22
+ KAFKA_BROKER_ID: "1"
23
+ KAFKA_LISTENERS: PLAINTEXT://0.0.0.0:9092
24
+ KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://localhost:9092
25
+ configFiles: []
26
+ lastVerified: "2026-03-22"
27
+ tags: [kafka, streaming, event, message-broker, distributed, queue]
@@ -0,0 +1,30 @@
1
+ id: mariadb
2
+ name: MariaDB
3
+ category: database
4
+ description: Community-developed fork of MySQL with enhanced features and performance
5
+ website: https://mariadb.org
6
+ versions:
7
+ - version: "11.7"
8
+ - version: "11.6"
9
+ lts: true
10
+ defaultVersion: "11.7"
11
+ defaultPort: 3306
12
+ requires: []
13
+ incompatibleWith: [mysql]
14
+ suggestedWith: [prisma, drizzle, laravel]
15
+ officialScaffold: null
16
+ dockerImage: mariadb:11.7
17
+ healthCheck:
18
+ command: mariadb-admin ping -u root
19
+ interval: 10s
20
+ timeout: 5s
21
+ retries: 5
22
+ envVars:
23
+ MARIADB_ROOT_PASSWORD: mariadb
24
+ MARIADB_DATABASE: app
25
+ MARIADB_USER: mariadb
26
+ MARIADB_PASSWORD: mariadb
27
+ DATABASE_URL: mysql://mariadb:mariadb@localhost:3306/app
28
+ configFiles: []
29
+ lastVerified: "2026-03-22"
30
+ tags: [mariadb, mysql, sql, relational, database]
@@ -0,0 +1,25 @@
1
+ id: mongodb
2
+ name: MongoDB
3
+ category: database
4
+ description: Document-oriented NoSQL database
5
+ website: https://mongodb.com
6
+ versions: [{version: "8.0"}, {version: "7.0"}]
7
+ defaultVersion: "8.0"
8
+ defaultPort: 27017
9
+ requires: []
10
+ incompatibleWith: []
11
+ suggestedWith: []
12
+ officialScaffold: null
13
+ dockerImage: mongo:8.0
14
+ healthCheck:
15
+ command: mongosh --eval "db.adminCommand('ping')"
16
+ interval: 10s
17
+ timeout: 5s
18
+ retries: 3
19
+ envVars:
20
+ MONGO_INITDB_ROOT_USERNAME: admin
21
+ MONGO_INITDB_ROOT_PASSWORD: admin
22
+ MONGODB_URL: mongodb://admin:admin@localhost:27017/app?authSource=admin
23
+ configFiles: []
24
+ lastVerified: "2026-03-22"
25
+ tags: [mongodb, nosql, document]
@@ -0,0 +1,25 @@
1
+ id: mysql
2
+ name: MySQL
3
+ category: database
4
+ description: Popular open source relational database
5
+ website: https://mysql.com
6
+ versions: [{version: "9.0"}, {version: "8.4"}]
7
+ defaultVersion: "9.0"
8
+ defaultPort: 3306
9
+ requires: []
10
+ incompatibleWith: [mariadb]
11
+ suggestedWith: [prisma, typeorm]
12
+ officialScaffold: null
13
+ dockerImage: mysql:9.0
14
+ healthCheck:
15
+ command: mysqladmin ping -h localhost
16
+ interval: 5s
17
+ timeout: 5s
18
+ retries: 5
19
+ envVars:
20
+ MYSQL_ROOT_PASSWORD: root
21
+ MYSQL_DATABASE: app
22
+ DATABASE_URL: mysql://root:root@localhost:3306/app
23
+ configFiles: []
24
+ lastVerified: "2026-03-22"
25
+ tags: [mysql, sql, relational]
@@ -0,0 +1,18 @@
1
+ id: neon
2
+ name: Neon
3
+ category: database
4
+ description: Serverless Postgres with branching, autoscaling, and bottomless storage
5
+ website: https://neon.tech
6
+ versions:
7
+ - version: "1"
8
+ defaultVersion: "1"
9
+ requires: []
10
+ incompatibleWith: []
11
+ suggestedWith: [prisma, drizzle, nextjs]
12
+ officialScaffold: null
13
+ dockerImage: null
14
+ envVars:
15
+ DATABASE_URL: "postgresql://...@ep-xxx.us-east-2.aws.neon.tech/neondb"
16
+ configFiles: []
17
+ lastVerified: "2026-03-22"
18
+ tags: [neon, postgresql, serverless, cloud, database, branching]
@@ -0,0 +1,24 @@
1
+ id: pocketbase
2
+ name: PocketBase
3
+ category: database
4
+ description: Open source backend with embedded SQLite database, auth, and file storage
5
+ website: https://pocketbase.io
6
+ versions:
7
+ - version: "0.25"
8
+ - version: "0.24"
9
+ defaultVersion: "0.25"
10
+ defaultPort: 8090
11
+ requires: []
12
+ incompatibleWith: []
13
+ suggestedWith: [svelte, react]
14
+ officialScaffold: null
15
+ dockerImage: null
16
+ healthCheck:
17
+ endpoint: http://localhost:8090/api/health
18
+ interval: 10s
19
+ timeout: 5s
20
+ retries: 3
21
+ envVars: {}
22
+ configFiles: []
23
+ lastVerified: "2026-03-22"
24
+ tags: [pocketbase, sqlite, baas, backend, realtime, auth]
@@ -0,0 +1,26 @@
1
+ id: postgresql
2
+ name: PostgreSQL
3
+ category: database
4
+ description: Advanced open source relational database
5
+ website: https://postgresql.org
6
+ versions: [{version: "17"}, {version: "16", lts: true}]
7
+ defaultVersion: "17"
8
+ defaultPort: 5432
9
+ requires: []
10
+ incompatibleWith: []
11
+ suggestedWith: [prisma, drizzle, sqlalchemy]
12
+ officialScaffold: null
13
+ dockerImage: postgres:17
14
+ healthCheck:
15
+ command: pg_isready -U postgres
16
+ interval: 5s
17
+ timeout: 5s
18
+ retries: 5
19
+ envVars:
20
+ POSTGRES_USER: postgres
21
+ POSTGRES_PASSWORD: postgres
22
+ POSTGRES_DB: app
23
+ DATABASE_URL: postgresql://postgres:postgres@localhost:5432/app
24
+ configFiles: []
25
+ lastVerified: "2026-03-22"
26
+ tags: [postgresql, postgres, sql, relational]
@@ -0,0 +1,23 @@
1
+ id: redis
2
+ name: Redis
3
+ category: database
4
+ description: In-memory data store for caching, queues, and sessions
5
+ website: https://redis.io
6
+ versions: [{version: "7"}]
7
+ defaultVersion: "7"
8
+ defaultPort: 6379
9
+ requires: []
10
+ incompatibleWith: []
11
+ suggestedWith: []
12
+ officialScaffold: null
13
+ dockerImage: redis:7-alpine
14
+ healthCheck:
15
+ command: redis-cli ping
16
+ interval: 5s
17
+ timeout: 5s
18
+ retries: 5
19
+ envVars:
20
+ REDIS_URL: redis://localhost:6379/0
21
+ configFiles: []
22
+ lastVerified: "2026-03-22"
23
+ tags: [redis, cache, queue, sessions, nosql]
@@ -0,0 +1,19 @@
1
+ id: sqlite
2
+ name: SQLite
3
+ category: database
4
+ description: Self-contained, serverless SQL database engine
5
+ website: https://sqlite.org
6
+ versions:
7
+ - version: "3.47"
8
+ - version: "3.46"
9
+ defaultVersion: "3.47"
10
+ requires: []
11
+ incompatibleWith: []
12
+ suggestedWith: [prisma, drizzle]
13
+ officialScaffold: null
14
+ dockerImage: null
15
+ envVars:
16
+ DATABASE_URL: "file:./dev.db"
17
+ configFiles: []
18
+ lastVerified: "2026-03-22"
19
+ tags: [sqlite, sql, embedded, serverless, database, lightweight]
@@ -0,0 +1,27 @@
1
+ id: supabase
2
+ name: Supabase
3
+ category: database
4
+ description: Open source Firebase alternative with PostgreSQL, auth, and realtime
5
+ website: https://supabase.com
6
+ versions:
7
+ - version: "2"
8
+ defaultVersion: "2"
9
+ defaultPort: 54321
10
+ requires: []
11
+ incompatibleWith: []
12
+ suggestedWith: [supabase-auth, nextjs]
13
+ officialScaffold: null
14
+ dockerImage: supabase/postgres
15
+ healthCheck:
16
+ endpoint: http://localhost:54321/rest/v1/
17
+ interval: 10s
18
+ timeout: 5s
19
+ retries: 5
20
+ envVars:
21
+ SUPABASE_URL: http://localhost:54321
22
+ SUPABASE_ANON_KEY: ""
23
+ SUPABASE_SERVICE_ROLE_KEY: ""
24
+ configFiles:
25
+ - supabase/config.toml
26
+ lastVerified: "2026-03-22"
27
+ tags: [supabase, postgresql, baas, realtime, auth, storage]
@@ -0,0 +1,19 @@
1
+ id: turso
2
+ name: Turso
3
+ category: database
4
+ description: Edge-hosted distributed SQLite database built on libSQL
5
+ website: https://turso.tech
6
+ versions:
7
+ - version: "1"
8
+ defaultVersion: "1"
9
+ requires: []
10
+ incompatibleWith: []
11
+ suggestedWith: [drizzle, nextjs]
12
+ officialScaffold: null
13
+ dockerImage: null
14
+ envVars:
15
+ TURSO_DATABASE_URL: "libsql://..."
16
+ TURSO_AUTH_TOKEN: "..."
17
+ configFiles: []
18
+ lastVerified: "2026-03-22"
19
+ tags: [turso, sqlite, libsql, edge, serverless, database]
@@ -0,0 +1,19 @@
1
+ id: biome
2
+ name: Biome
3
+ category: devops
4
+ description: Fast formatter and linter for JavaScript, TypeScript, JSX, and JSON
5
+ website: https://biomejs.dev
6
+ versions:
7
+ - version: "1.9"
8
+ - version: "1.8"
9
+ - version: "1.7"
10
+ defaultVersion: "1.9"
11
+ requires: [nodejs]
12
+ incompatibleWith: [eslint, prettier]
13
+ suggestedWith: [typescript]
14
+ officialScaffold: null
15
+ dockerImage: null
16
+ envVars: {}
17
+ configFiles: [biome.json]
18
+ lastVerified: "2026-03-22"
19
+ tags: [biome, linter, formatter, devops, code-quality]
@@ -0,0 +1,20 @@
1
+ id: cypress
2
+ name: Cypress
3
+ category: devops
4
+ description: JavaScript end-to-end testing framework for web applications
5
+ website: https://www.cypress.io
6
+ versions:
7
+ - version: "14.2"
8
+ - version: "14.1"
9
+ - version: "13.17"
10
+ defaultVersion: "14.2"
11
+ requires: [nodejs]
12
+ incompatibleWith: []
13
+ suggestedWith: [typescript]
14
+ officialScaffold: null
15
+ dockerImage: null
16
+ envVars: {}
17
+ configFiles:
18
+ - cypress.config.ts
19
+ lastVerified: "2026-03-22"
20
+ tags: [cypress, testing, e2e, integration, browser, automation]
@@ -0,0 +1,18 @@
1
+ id: devcontainers
2
+ name: Dev Containers
3
+ category: devops
4
+ description: Containerized development environments with consistent tooling and configuration
5
+ website: https://containers.dev
6
+ versions:
7
+ - version: "1"
8
+ defaultVersion: "1"
9
+ requires: []
10
+ incompatibleWith: []
11
+ suggestedWith: [docker]
12
+ officialScaffold: null
13
+ dockerImage: null
14
+ envVars: {}
15
+ configFiles:
16
+ - .devcontainer/devcontainer.json
17
+ lastVerified: "2026-03-22"
18
+ tags: [devcontainers, docker, development, environment, vscode, codespaces]