@punks/cli 0.1.16 → 1.0.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.
- package/AGENTS.md +10 -0
- package/README.md +64 -0
- package/dist/data/AGENTS.md +123 -0
- package/dist/data/catalog/lint.ts +349 -0
- package/dist/data/catalog/packs.ts +44 -0
- package/dist/data/catalog/skills.ts +47 -0
- package/dist/data/catalog/tools.ts +22 -0
- package/dist/data/hooks/format-edited-file.mjs +554 -0
- package/dist/data/hooks/format-edited-file.py +157 -0
- package/dist/data/hooks/format-edited-file.sh +37 -0
- package/dist/data/hooks/require-tests-for-pr.mjs +144 -0
- package/dist/data/scripts/sync-subagents.mjs +420 -0
- package/dist/data/subagents/manifest.mjs +253 -0
- package/dist/index.js +46415 -0
- package/dist/skills/agnostic/backend/backend-domain-structure/SKILL.md +50 -0
- package/dist/skills/agnostic/backend/backend-domain-structure/agents/openai.yaml +4 -0
- package/dist/skills/agnostic/backend/backend-domain-structure/references/layout.md +167 -0
- package/dist/skills/agnostic/backend/backend-recoverable-actions/SKILL.md +49 -0
- package/dist/skills/agnostic/backend/backend-recoverable-actions/agents/openai.yaml +4 -0
- package/dist/skills/agnostic/backend/backend-recoverable-actions/references/strategy-matrix.md +34 -0
- package/dist/skills/agnostic/backend/backend-recoverable-actions/references/test-matrix.md +34 -0
- package/dist/skills/agnostic/docs/docs-maintenance/SKILL.md +193 -0
- package/dist/skills/agnostic/docs/docs-maintenance/agents/openai.yaml +4 -0
- package/dist/skills/agnostic/docs/docs-maintenance/references/concept-pages.md +48 -0
- package/dist/skills/agnostic/docs/docs-maintenance/references/flow-pages.md +41 -0
- package/dist/skills/agnostic/frontend/agent-browser/.clawdhub/origin.json +7 -0
- package/dist/skills/agnostic/frontend/agent-browser/SKILL.md +229 -0
- package/dist/skills/agnostic/frontend/agent-browser/references/authentication.md +202 -0
- package/dist/skills/agnostic/frontend/agent-browser/references/commands.md +259 -0
- package/dist/skills/agnostic/frontend/agent-browser/references/proxy-support.md +188 -0
- package/dist/skills/agnostic/frontend/agent-browser/references/session-management.md +193 -0
- package/dist/skills/agnostic/frontend/agent-browser/references/snapshot-refs.md +194 -0
- package/dist/skills/agnostic/frontend/agent-browser/references/video-recording.md +173 -0
- package/dist/skills/agnostic/frontend/agent-browser/templates/authenticated-session.sh +97 -0
- package/dist/skills/agnostic/frontend/agent-browser/templates/capture-workflow.sh +69 -0
- package/dist/skills/agnostic/frontend/agent-browser/templates/form-automation.sh +62 -0
- package/dist/skills/agnostic/frontend/design-taste-frontend/SKILL.md +226 -0
- package/dist/skills/agnostic/frontend/frontend-domain-structure/SKILL.md +55 -0
- package/dist/skills/agnostic/frontend/frontend-domain-structure/agents/openai.yaml +4 -0
- package/dist/skills/agnostic/frontend/frontend-domain-structure/references/react/structure.md +102 -0
- package/dist/skills/agnostic/frontend/frontend-domain-structure/references/structure.md +257 -0
- package/dist/skills/agnostic/frontend/gpt-taste/SKILL.md +74 -0
- package/dist/skills/agnostic/frontend/image-taste-frontend/SKILL.md +1102 -0
- package/dist/skills/agnostic/frontend/redesign-existing-projects/SKILL.md +178 -0
- package/dist/skills/agnostic/planning/create-plan/REFERENCE.md +37 -0
- package/dist/skills/agnostic/planning/create-plan/SKILL.md +69 -0
- package/dist/skills/agnostic/planning/create-plan/references/backlog-sync.md +44 -0
- package/dist/skills/agnostic/planning/create-plan/references/grill-phase.md +86 -0
- package/dist/skills/agnostic/planning/create-plan/references/plan-schema.md +66 -0
- package/dist/skills/agnostic/planning/create-plan/references/planner-phase.md +39 -0
- package/dist/skills/agnostic/planning/create-plan/references/stop-conditions.md +18 -0
- package/dist/skills/agnostic/planning/create-plan/references/tdd-phase.md +26 -0
- package/dist/skills/agnostic/planning/create-spec/SKILL.md +57 -0
- package/dist/skills/agnostic/planning/create-spec/assets/SPEC-TEMPLATE.md +91 -0
- package/dist/skills/agnostic/planning/create-spec/references/discovery.md +44 -0
- package/dist/skills/agnostic/planning/create-spec/references/folder-naming.md +27 -0
- package/dist/skills/agnostic/planning/create-spec/references/handoff.md +47 -0
- package/dist/skills/agnostic/planning/create-spec/references/questioning.md +41 -0
- package/dist/skills/agnostic/planning/create-spec/references/spec-quality-bar.md +58 -0
- package/dist/skills/agnostic/planning/create-spec/references/wiki-bookkeeping.md +26 -0
- package/dist/skills/agnostic/planning/grill-me/SKILL.md +28 -0
- package/dist/skills/agnostic/planning/implement-spec/SKILL.md +72 -0
- package/dist/skills/agnostic/planning/implement-spec/assets/IMPLEMENTATION-NOTES-TEMPLATE.md +47 -0
- package/dist/skills/agnostic/planning/implement-spec/references/lifecycle.md +149 -0
- package/dist/skills/agnostic/planning/implement-spec/references/parallel-orchestration.md +102 -0
- package/dist/skills/agnostic/planning/implement-spec/references/parallel-worker-brief.md +65 -0
- package/dist/skills/agnostic/planning/implement-spec/references/parallel.md +56 -0
- package/dist/skills/agnostic/planning/implement-spec/references/sequential.md +28 -0
- package/dist/skills/agnostic/planning/swarm-planner/SKILL.md +179 -0
- package/dist/skills/agnostic/quality/simplify/SKILL.md +14 -0
- package/dist/skills/agnostic/quality/tdd/SKILL.md +107 -0
- package/dist/skills/agnostic/quality/tdd/deep-modules.md +33 -0
- package/dist/skills/agnostic/quality/tdd/interface-design.md +31 -0
- package/dist/skills/agnostic/quality/tdd/mocking.md +59 -0
- package/dist/skills/agnostic/quality/tdd/refactoring.md +10 -0
- package/dist/skills/agnostic/quality/tdd/tests.md +61 -0
- package/dist/skills/agnostic/requirements/requirements-grill/SKILL.md +42 -0
- package/dist/skills/agnostic/requirements/requirements-grill/references/artifact-output.md +73 -0
- package/dist/skills/agnostic/requirements/requirements-grill/references/grilling-flow.md +57 -0
- package/dist/skills/agnostic/requirements/requirements-grill/references/wiki-output.md +94 -0
- package/dist/skills/agnostic/requirements/write-backlog/EXAMPLES.md +67 -0
- package/dist/skills/agnostic/requirements/write-backlog/REFERENCE.md +253 -0
- package/dist/skills/agnostic/requirements/write-backlog/SKILL.md +68 -0
- package/dist/skills/agnostic/requirements/write-backlog/assets/concepts/backlog-model.md +69 -0
- package/dist/skills/agnostic/requirements/write-backlog/assets/concepts/story-shape.md +66 -0
- package/dist/skills/agnostic/requirements/write-backlog/assets/providers/azure-devops-create-payload.md +63 -0
- package/dist/skills/agnostic/requirements/write-backlog/assets/providers/github-issues-create-payload.md +48 -0
- package/dist/skills/agnostic/requirements/write-backlog/assets/providers/linear-create-payload.md +76 -0
- package/dist/skills/agnostic/research/improve-codebase-architecture/REFERENCE.md +78 -0
- package/dist/skills/agnostic/research/improve-codebase-architecture/SKILL.md +76 -0
- package/dist/skills/agnostic/research/parallel-research/SKILL.md +68 -0
- package/dist/skills/agnostic/research/parallel-research/agents/openai.yaml +4 -0
- package/dist/skills/agnostic/subagents/swarm-planner/SKILL.md +179 -0
- package/dist/skills/agnostic/write-a-skill/SKILL.md +117 -0
- package/dist/skills/frameworks/better-auth/better-auth-best-practices/SKILL.md +166 -0
- package/dist/skills/frameworks/better-auth/better-auth-security-best-practices/SKILL.MD +432 -0
- package/dist/skills/frameworks/effect/effect-authoring/SKILL.md +116 -0
- package/dist/skills/frameworks/effect/effect-authoring/references/branded-types.md +98 -0
- package/dist/skills/frameworks/effect/effect-authoring/references/effect-atom-patterns.md +257 -0
- package/dist/skills/frameworks/effect/effect-authoring/references/effect-primitives.md +144 -0
- package/dist/skills/frameworks/effect/effect-authoring/references/error-patterns.md +156 -0
- package/dist/skills/frameworks/effect/effect-authoring/references/otel-patterns.md +113 -0
- package/dist/skills/frameworks/effect/effect-authoring/references/test-patterns.md +146 -0
- package/dist/skills/frameworks/effect/effect-backend-structure/SKILL.md +96 -0
- package/dist/skills/frameworks/effect/effect-backend-structure/agents/openai.yaml +4 -0
- package/dist/skills/frameworks/effect/effect-backend-structure/references/layout.md +68 -0
- package/dist/skills/frameworks/effect/effect-best-practices/SKILL.md +517 -0
- package/dist/skills/frameworks/effect/effect-best-practices/references/anti-patterns.md +392 -0
- package/dist/skills/frameworks/effect/effect-best-practices/references/effect-atom-patterns.md +653 -0
- package/dist/skills/frameworks/effect/effect-best-practices/references/error-patterns.md +464 -0
- package/dist/skills/frameworks/effect/effect-best-practices/references/language-server.md +287 -0
- package/dist/skills/frameworks/effect/effect-best-practices/references/layer-patterns.md +495 -0
- package/dist/skills/frameworks/effect/effect-best-practices/references/observability-patterns.md +342 -0
- package/dist/skills/frameworks/effect/effect-best-practices/references/rpc-cluster-patterns.md +418 -0
- package/dist/skills/frameworks/effect/effect-best-practices/references/schema-patterns.md +353 -0
- package/dist/skills/frameworks/effect/effect-best-practices/references/service-patterns.md +299 -0
- package/dist/skills/frameworks/effect/effect-recoverable-actions/SKILL.md +65 -0
- package/dist/skills/frameworks/effect/effect-recoverable-actions/agents/openai.yaml +4 -0
- package/dist/skills/frameworks/effect/effect-recoverable-actions/references/flow-examples.md +154 -0
- package/dist/skills/frameworks/effect/effect-recoverable-actions/references/source-backed-primitives.md +104 -0
- package/dist/skills/frameworks/effect/effect-recoverable-actions/references/strategy-matrix.md +34 -0
- package/dist/skills/frameworks/effect/effect-recoverable-actions/references/test-matrix.md +36 -0
- package/dist/skills/frameworks/elysia/elysiajs/SKILL.md +475 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/basic.ts +9 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/body-parser.ts +33 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/complex.ts +112 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/cookie.ts +45 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/error.ts +38 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/file.ts +10 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/guard.ts +34 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/map-response.ts +15 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/redirect.ts +6 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/rename.ts +32 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/schema.ts +61 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/state.ts +6 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/upload-file.ts +20 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/websocket.ts +25 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/ai-sdk.md +92 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/astro.md +59 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/better-auth.md +117 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/cloudflare-worker.md +95 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/deno.md +34 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/drizzle.md +258 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/expo.md +95 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/nextjs.md +103 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/nodejs.md +64 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/nuxt.md +67 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/prisma.md +93 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/react-email.md +134 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/sveltekit.md +53 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/tanstack-start.md +87 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/vercel.md +55 -0
- package/dist/skills/frameworks/elysia/elysiajs/patterns/mvc.md +380 -0
- package/dist/skills/frameworks/elysia/elysiajs/plugins/bearer.md +30 -0
- package/dist/skills/frameworks/elysia/elysiajs/plugins/cors.md +141 -0
- package/dist/skills/frameworks/elysia/elysiajs/plugins/cron.md +265 -0
- package/dist/skills/frameworks/elysia/elysiajs/plugins/graphql-apollo.md +90 -0
- package/dist/skills/frameworks/elysia/elysiajs/plugins/graphql-yoga.md +87 -0
- package/dist/skills/frameworks/elysia/elysiajs/plugins/html.md +188 -0
- package/dist/skills/frameworks/elysia/elysiajs/plugins/jwt.md +197 -0
- package/dist/skills/frameworks/elysia/elysiajs/plugins/openapi.md +246 -0
- package/dist/skills/frameworks/elysia/elysiajs/plugins/opentelemetry.md +167 -0
- package/dist/skills/frameworks/elysia/elysiajs/plugins/server-timing.md +71 -0
- package/dist/skills/frameworks/elysia/elysiajs/plugins/static.md +84 -0
- package/dist/skills/frameworks/elysia/elysiajs/references/bun-fullstack-dev-server.md +129 -0
- package/dist/skills/frameworks/elysia/elysiajs/references/cookie.md +187 -0
- package/dist/skills/frameworks/elysia/elysiajs/references/deployment.md +413 -0
- package/dist/skills/frameworks/elysia/elysiajs/references/eden.md +158 -0
- package/dist/skills/frameworks/elysia/elysiajs/references/lifecycle.md +198 -0
- package/dist/skills/frameworks/elysia/elysiajs/references/macro.md +83 -0
- package/dist/skills/frameworks/elysia/elysiajs/references/plugin.md +207 -0
- package/dist/skills/frameworks/elysia/elysiajs/references/route.md +331 -0
- package/dist/skills/frameworks/elysia/elysiajs/references/testing.md +385 -0
- package/dist/skills/frameworks/elysia/elysiajs/references/validation.md +491 -0
- package/dist/skills/frameworks/elysia/elysiajs/references/websocket.md +250 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/.github/workflows/branch-protection.yml +24 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/.github/workflows/deploy.yml +61 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/AGENTS.md +5958 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/SKILL.md +130 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/api-use-dto-serialization.md +182 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/api-use-interceptors.md +202 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/api-use-pipes.md +205 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/api-versioning.md +191 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/arch-avoid-circular-deps.md +80 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/arch-feature-modules.md +82 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/arch-module-sharing.md +141 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/arch-single-responsibility.md +106 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/arch-use-events.md +108 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/arch-use-repository-pattern.md +97 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/db-avoid-n-plus-one.md +139 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/db-use-migrations.md +129 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/db-use-transactions.md +140 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/devops-graceful-shutdown.md +222 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/devops-use-config-module.md +167 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/devops-use-logging.md +232 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/di-avoid-service-locator.md +104 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/di-interface-segregation.md +165 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/di-liskov-substitution.md +221 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/di-prefer-constructor-injection.md +86 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/di-scope-awareness.md +94 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/di-use-interfaces-tokens.md +101 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/error-handle-async-errors.md +125 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/error-throw-http-exceptions.md +114 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/error-use-exception-filters.md +140 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/micro-use-health-checks.md +226 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/micro-use-patterns.md +167 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/micro-use-queues.md +252 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/perf-async-hooks.md +109 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/perf-lazy-loading.md +121 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/perf-optimize-database.md +131 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/perf-use-caching.md +128 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/security-auth-jwt.md +146 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/security-rate-limiting.md +125 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/security-sanitize-output.md +139 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/security-use-guards.md +135 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/security-validate-all-input.md +150 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/test-e2e-supertest.md +178 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/test-mock-external-services.md +179 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/test-use-testing-module.md +153 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/scripts/build-agents.ts +299 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/scripts/build.sh +16 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/scripts/package-lock.json +237 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/scripts/package.json +15 -0
- package/dist/skills/frameworks/nestjs/nestjs-expert/SKILL.md +208 -0
- package/dist/skills/frameworks/nestjs/nestjs-expert/references/authentication.md +166 -0
- package/dist/skills/frameworks/nestjs/nestjs-expert/references/controllers-routing.md +111 -0
- package/dist/skills/frameworks/nestjs/nestjs-expert/references/dtos-validation.md +153 -0
- package/dist/skills/frameworks/nestjs/nestjs-expert/references/migration-from-express.md +1237 -0
- package/dist/skills/frameworks/nestjs/nestjs-expert/references/services-di.md +140 -0
- package/dist/skills/frameworks/nestjs/nestjs-expert/references/testing-patterns.md +186 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/SKILL.md +153 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/async-patterns.md +87 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/bundling.md +180 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/data-patterns.md +297 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/debug-tricks.md +105 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/directives.md +73 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/error-handling.md +227 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/file-conventions.md +140 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/font.md +245 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/functions.md +108 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/hydration-error.md +91 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/image.md +173 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/metadata.md +301 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/parallel-routes.md +287 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/route-handlers.md +146 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/rsc-boundaries.md +159 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/runtime-selection.md +39 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/scripts.md +141 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/self-hosting.md +371 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/suspense-boundaries.md +67 -0
- package/dist/skills/frameworks/nextjs/next-cache-components/SKILL.md +360 -0
- package/dist/skills/frameworks/react/async-react-patterns/SKILL.md +78 -0
- package/dist/skills/frameworks/react/vercel-composition-patterns/AGENTS.md +946 -0
- package/dist/skills/frameworks/react/vercel-composition-patterns/SKILL.md +89 -0
- package/dist/skills/frameworks/react/vercel-composition-patterns/rules/architecture-avoid-boolean-props.md +100 -0
- package/dist/skills/frameworks/react/vercel-composition-patterns/rules/architecture-compound-components.md +112 -0
- package/dist/skills/frameworks/react/vercel-composition-patterns/rules/patterns-children-over-render-props.md +87 -0
- package/dist/skills/frameworks/react/vercel-composition-patterns/rules/patterns-explicit-variants.md +100 -0
- package/dist/skills/frameworks/react/vercel-composition-patterns/rules/react19-no-forwardref.md +42 -0
- package/dist/skills/frameworks/react/vercel-composition-patterns/rules/state-context-interface.md +191 -0
- package/dist/skills/frameworks/react/vercel-composition-patterns/rules/state-decouple-implementation.md +113 -0
- package/dist/skills/frameworks/react/vercel-composition-patterns/rules/state-lift-state.md +125 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/AGENTS.md +3750 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/SKILL.md +148 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/advanced-effect-event-deps.md +56 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/advanced-event-handler-refs.md +55 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/advanced-init-once.md +42 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/advanced-use-latest.md +39 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/async-api-routes.md +38 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/async-cheap-condition-before-await.md +37 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/async-defer-await.md +82 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/async-dependencies.md +51 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/async-parallel.md +28 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/async-suspense-boundaries.md +99 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/bundle-barrel-imports.md +60 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/bundle-conditional.md +31 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/bundle-defer-third-party.md +49 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/bundle-dynamic-imports.md +35 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/bundle-preload.md +50 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/client-event-listeners.md +74 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/client-localstorage-schema.md +71 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/client-passive-event-listeners.md +48 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/client-swr-dedup.md +56 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-batch-dom-css.md +107 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-cache-function-results.md +80 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-cache-property-access.md +28 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-cache-storage.md +70 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-combine-iterations.md +32 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-early-exit.md +50 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-flatmap-filter.md +60 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-hoist-regexp.md +45 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-index-maps.md +37 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-length-check-first.md +49 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-min-max-loop.md +82 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-request-idle-callback.md +105 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-set-map-lookups.md +24 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-tosorted-immutable.md +57 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-activity.md +26 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-animate-svg-wrapper.md +47 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-conditional-render.md +40 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-content-visibility.md +38 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-hoist-jsx.md +46 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-hydration-no-flicker.md +82 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-hydration-suppress-warning.md +30 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-resource-hints.md +85 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-script-defer-async.md +68 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-svg-precision.md +28 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-usetransition-loading.md +75 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-defer-reads.md +39 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-dependencies.md +45 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-derived-state-no-effect.md +40 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-derived-state.md +29 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-functional-setstate.md +74 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-lazy-state-init.md +58 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-memo-with-default-value.md +38 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-memo.md +44 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-move-effect-to-event.md +45 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-no-inline-components.md +82 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-simple-expression-in-memo.md +35 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-split-combined-hooks.md +64 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-transitions.md +40 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-use-deferred-value.md +59 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-use-ref-transient-values.md +73 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-after-nonblocking.md +73 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-auth-actions.md +96 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-cache-lru.md +41 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-cache-react.md +76 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-dedup-props.md +65 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-hoist-static-io.md +149 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-no-shared-module-state.md +50 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-parallel-fetching.md +83 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-parallel-nested-fetching.md +34 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-serialization.md +38 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/.claude-plugin/plugin.json +12 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/SKILL.md +1058 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/assets/example-template.txt +14 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/references/best-practices.md +304 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/references/common-patterns.md +271 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/references/example-reference.md +26 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/references/testing.md +282 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/references/top-errors.md +332 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/references/typescript-patterns.md +291 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/references/v4-to-v5-migration.md +231 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/rules/tanstack-query.md +126 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/scripts/example-script.sh +15 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/custom-hooks-pattern.tsx +281 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/devtools-setup.tsx +248 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/error-boundary.tsx +243 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/package.json +31 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/provider-setup.tsx +50 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/query-client-config.ts +72 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/use-infinite-query.tsx +214 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/use-mutation-basic.tsx +201 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/use-mutation-optimistic.tsx +234 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/use-query-basic.tsx +119 -0
- package/dist/skills/frameworks/trpc/tanstack-query/.claude-plugin/plugin.json +12 -0
- package/dist/skills/frameworks/trpc/tanstack-query/SKILL.md +1058 -0
- package/dist/skills/frameworks/trpc/tanstack-query/assets/example-template.txt +14 -0
- package/dist/skills/frameworks/trpc/tanstack-query/references/best-practices.md +304 -0
- package/dist/skills/frameworks/trpc/tanstack-query/references/common-patterns.md +271 -0
- package/dist/skills/frameworks/trpc/tanstack-query/references/example-reference.md +26 -0
- package/dist/skills/frameworks/trpc/tanstack-query/references/testing.md +282 -0
- package/dist/skills/frameworks/trpc/tanstack-query/references/top-errors.md +332 -0
- package/dist/skills/frameworks/trpc/tanstack-query/references/typescript-patterns.md +291 -0
- package/dist/skills/frameworks/trpc/tanstack-query/references/v4-to-v5-migration.md +231 -0
- package/dist/skills/frameworks/trpc/tanstack-query/rules/tanstack-query.md +126 -0
- package/dist/skills/frameworks/trpc/tanstack-query/scripts/example-script.sh +15 -0
- package/dist/skills/frameworks/trpc/tanstack-query/templates/custom-hooks-pattern.tsx +281 -0
- package/dist/skills/frameworks/trpc/tanstack-query/templates/devtools-setup.tsx +248 -0
- package/dist/skills/frameworks/trpc/tanstack-query/templates/error-boundary.tsx +243 -0
- package/dist/skills/frameworks/trpc/tanstack-query/templates/package.json +31 -0
- package/dist/skills/frameworks/trpc/tanstack-query/templates/provider-setup.tsx +50 -0
- package/dist/skills/frameworks/trpc/tanstack-query/templates/query-client-config.ts +72 -0
- package/dist/skills/frameworks/trpc/tanstack-query/templates/use-infinite-query.tsx +214 -0
- package/dist/skills/frameworks/trpc/tanstack-query/templates/use-mutation-basic.tsx +201 -0
- package/dist/skills/frameworks/trpc/tanstack-query/templates/use-mutation-optimistic.tsx +234 -0
- package/dist/skills/frameworks/trpc/tanstack-query/templates/use-query-basic.tsx +119 -0
- package/dist/skills/frameworks/turborepo/turborepo/SKILL.md +914 -0
- package/dist/skills/frameworks/turborepo/turborepo/command/turborepo.md +70 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/best-practices/RULE.md +241 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/best-practices/dependencies.md +246 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/best-practices/packages.md +335 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/best-practices/structure.md +270 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/boundaries/RULE.md +126 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/caching/RULE.md +107 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/caching/gotchas.md +169 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/caching/remote-cache.md +127 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/ci/RULE.md +79 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/ci/github-actions.md +162 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/ci/patterns.md +145 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/ci/vercel.md +103 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/cli/RULE.md +100 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/cli/commands.md +297 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/configuration/RULE.md +211 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/configuration/global-options.md +187 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/configuration/gotchas.md +348 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/configuration/tasks.md +285 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/environment/RULE.md +96 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/environment/gotchas.md +141 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/environment/modes.md +101 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/filtering/RULE.md +148 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/filtering/patterns.md +152 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/watch/RULE.md +99 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/docs/README.md +20 -0
- package/docs/reference/dp-requirements.md +210 -0
- package/docs/runbooks/dp-cli-scaffolding.md +187 -0
- package/package.json +24 -50
- package/.eslintignore +0 -4
- package/.eslintrc +0 -127
- package/.prettierignore +0 -4
- package/.prettierrc +0 -7
- package/bin/abstractions/builder.d.ts +0 -4
- package/bin/abstractions/builder.js +0 -7
- package/bin/builders/dotnet/base.d.ts +0 -18
- package/bin/builders/dotnet/base.js +0 -47
- package/bin/builders/dotnet/entity-configuration/index.d.ts +0 -8
- package/bin/builders/dotnet/entity-configuration/index.js +0 -29
- package/bin/builders/dotnet/entity-converter/index.d.ts +0 -8
- package/bin/builders/dotnet/entity-converter/index.js +0 -29
- package/bin/builders/dotnet/entity-model-create/index.d.ts +0 -8
- package/bin/builders/dotnet/entity-model-create/index.js +0 -29
- package/bin/builders/dotnet/entity-model-dto/index.d.ts +0 -8
- package/bin/builders/dotnet/entity-model-dto/index.js +0 -29
- package/bin/builders/dotnet/entity-model-list-item-dto/index.d.ts +0 -8
- package/bin/builders/dotnet/entity-model-list-item-dto/index.js +0 -29
- package/bin/builders/dotnet/entity-model-update/index.d.ts +0 -8
- package/bin/builders/dotnet/entity-model-update/index.js +0 -29
- package/bin/builders/dotnet/entity-search-parameters/index.d.ts +0 -8
- package/bin/builders/dotnet/entity-search-parameters/index.js +0 -29
- package/bin/builders/dotnet/entity-search-query-builder/index.d.ts +0 -8
- package/bin/builders/dotnet/entity-search-query-builder/index.js +0 -29
- package/bin/builders/dotnet/firestore-connector/index.d.ts +0 -8
- package/bin/builders/dotnet/firestore-connector/index.js +0 -29
- package/bin/builders/dotnet/firestore-mapper/index.d.ts +0 -8
- package/bin/builders/dotnet/firestore-mapper/index.js +0 -29
- package/bin/builders/dotnet/types.d.ts +0 -10
- package/bin/builders/dotnet/types.js +0 -3
- package/bin/commands/entity-add/__test__/dotnet/common.d.ts +0 -2
- package/bin/commands/entity-add/__test__/dotnet/common.js +0 -11
- package/bin/commands/entity-add/__test__/dotnet/render.configuration.spec.d.ts +0 -1
- package/bin/commands/entity-add/__test__/dotnet/render.configuration.spec.js +0 -22
- package/bin/commands/entity-add/__test__/dotnet/render.converter.spec.d.ts +0 -1
- package/bin/commands/entity-add/__test__/dotnet/render.converter.spec.js +0 -22
- package/bin/commands/entity-add/__test__/dotnet/render.firestore-connector.spec.d.ts +0 -1
- package/bin/commands/entity-add/__test__/dotnet/render.firestore-connector.spec.js +0 -22
- package/bin/commands/entity-add/__test__/dotnet/render.firestore-mapper.spec.d.ts +0 -1
- package/bin/commands/entity-add/__test__/dotnet/render.firestore-mapper.spec.js +0 -22
- package/bin/commands/entity-add/__test__/dotnet/render.model-create.spec.d.ts +0 -1
- package/bin/commands/entity-add/__test__/dotnet/render.model-create.spec.js +0 -22
- package/bin/commands/entity-add/__test__/dotnet/render.model-dto.spec.d.ts +0 -1
- package/bin/commands/entity-add/__test__/dotnet/render.model-dto.spec.js +0 -22
- package/bin/commands/entity-add/__test__/dotnet/render.model-list-item-dto.spec.d.ts +0 -1
- package/bin/commands/entity-add/__test__/dotnet/render.model-list-item-dto.spec.js +0 -22
- package/bin/commands/entity-add/__test__/dotnet/render.model-update.spec.d.ts +0 -1
- package/bin/commands/entity-add/__test__/dotnet/render.model-update.spec.js +0 -22
- package/bin/commands/entity-add/__test__/dotnet/render.search-parameters.spec.d.ts +0 -1
- package/bin/commands/entity-add/__test__/dotnet/render.search-parameters.spec.js +0 -22
- package/bin/commands/entity-add/__test__/dotnet/render.search-query.spec.d.ts +0 -1
- package/bin/commands/entity-add/__test__/dotnet/render.search-query.spec.js +0 -22
- package/bin/commands/entity-add/index.d.ts +0 -26
- package/bin/commands/entity-add/index.js +0 -44
- package/bin/logging/index.d.ts +0 -8
- package/bin/logging/index.js +0 -28
- package/bin/providers/rendering/base.d.ts +0 -3
- package/bin/providers/rendering/base.js +0 -7
- package/bin/providers/rendering/factory.d.ts +0 -5
- package/bin/providers/rendering/factory.js +0 -16
- package/bin/providers/rendering/handlebars.d.ts +0 -4
- package/bin/providers/rendering/handlebars.js +0 -16
- package/bin/renderer/index.d.ts +0 -6
- package/bin/renderer/index.js +0 -27
- package/bin/run.d.ts +0 -2
- package/bin/run.js +0 -70
- package/bin/services/folders.d.ts +0 -1
- package/bin/services/folders.js +0 -31
- package/bin/types/commands.d.ts +0 -5
- package/bin/types/commands.js +0 -3
- package/bin/utils/collections.d.ts +0 -1
- package/bin/utils/collections.js +0 -6
- package/bin/utils/files.d.ts +0 -3
- package/bin/utils/files.js +0 -19
- package/bin/utils/strings.d.ts +0 -4
- package/bin/utils/strings.js +0 -22
- package/bin/utils/text.d.ts +0 -1
- package/bin/utils/text.js +0 -8
- package/em-cli +0 -0
- package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.configuration.spec.ts.snap +0 -49
- package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.converter.spec.ts.snap +0 -53
- package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.firestore-connector.spec.ts.snap +0 -20
- package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.firestore-mapper.spec.ts.snap +0 -29
- package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.model-create.spec.ts.snap +0 -10
- package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.model-dto.spec.ts.snap +0 -9
- package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.model-list-item-dto.spec.ts.snap +0 -11
- package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.model-update.spec.ts.snap +0 -11
- package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.search-parameters.spec.ts.snap +0 -29
- package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.search-query.spec.ts.snap +0 -42
- package/templates/dotnet/NewEntity/Configuration/<PluralizedEntity>Configuration.cs.template +0 -48
- package/templates/dotnet/NewEntity/Connectors/<PluralizedEntity>FirestoreConnector.cs.template +0 -15
- package/templates/dotnet/NewEntity/Converters/<PluralizedEntity>Converter.cs.template +0 -48
- package/templates/dotnet/NewEntity/Mappers/<PluralizedEntity>FirestoreMapper.cs.template +0 -25
- package/templates/dotnet/NewEntity/Models/<Entity>CreateInput.cs.template +0 -6
- package/templates/dotnet/NewEntity/Models/<Entity>Dto.cs.template +0 -5
- package/templates/dotnet/NewEntity/Models/<Entity>ListItemDto.cs.template +0 -6
- package/templates/dotnet/NewEntity/Models/<Entity>UpdateInput.cs.template +0 -6
- package/templates/dotnet/NewEntity/Search/<PluralizedEntity>QueryBuilder.cs.template +0 -38
- package/templates/dotnet/NewEntity/Search/<PluralizedEntity>SearchParameters.cs.template +0 -24
- package/tsconfig.json +0 -25
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Bearer
|
|
2
|
+
Plugin for Elysia for retrieving the Bearer token.
|
|
3
|
+
|
|
4
|
+
## Installation
|
|
5
|
+
```bash
|
|
6
|
+
bun add @elysiajs/bearer
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
## Basic Usage
|
|
10
|
+
```typescript twoslash
|
|
11
|
+
import { Elysia } from 'elysia'
|
|
12
|
+
import { bearer } from '@elysiajs/bearer'
|
|
13
|
+
|
|
14
|
+
const app = new Elysia()
|
|
15
|
+
.use(bearer())
|
|
16
|
+
.get('/sign', ({ bearer }) => bearer, {
|
|
17
|
+
beforeHandle({ bearer, set, status }) {
|
|
18
|
+
if (!bearer) {
|
|
19
|
+
set.headers[
|
|
20
|
+
'WWW-Authenticate'
|
|
21
|
+
] = `Bearer realm='sign', error="invalid_request"`
|
|
22
|
+
|
|
23
|
+
return status(400, 'Unauthorized')
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
})
|
|
27
|
+
.listen(3000)
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
This plugin is for retrieving a Bearer token specified in RFC6750
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
# CORS
|
|
2
|
+
|
|
3
|
+
Plugin for Elysia that adds support for customizing Cross-Origin Resource Sharing behavior.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
```bash
|
|
7
|
+
bun add @elysiajs/cors
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Basic Usage
|
|
11
|
+
```typescript twoslash
|
|
12
|
+
import { Elysia } from 'elysia'
|
|
13
|
+
import { cors } from '@elysiajs/cors'
|
|
14
|
+
|
|
15
|
+
new Elysia().use(cors()).listen(3000)
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
This will set Elysia to accept requests from any origin.
|
|
19
|
+
|
|
20
|
+
## Config
|
|
21
|
+
|
|
22
|
+
Below is a config which is accepted by the plugin
|
|
23
|
+
|
|
24
|
+
### origin
|
|
25
|
+
|
|
26
|
+
@default `true`
|
|
27
|
+
|
|
28
|
+
Indicates whether the response can be shared with the requesting code from the given origins.
|
|
29
|
+
|
|
30
|
+
Value can be one of the following:
|
|
31
|
+
|
|
32
|
+
- **string** - Name of origin which will directly assign to Access-Control-Allow-Origin header.
|
|
33
|
+
- **boolean** - If set to true, Access-Control-Allow-Origin will be set to `*` (any origins)
|
|
34
|
+
- **RegExp** - Pattern to match request's URL, allowed if matched.
|
|
35
|
+
- **Function** - Custom logic to allow resource sharing, allow if `true` is returned.
|
|
36
|
+
- Expected to have the type of:
|
|
37
|
+
```typescript
|
|
38
|
+
cors(context: Context) => boolean | void
|
|
39
|
+
```
|
|
40
|
+
- **Array<string | RegExp | Function>** - iterate through all cases above in order, allowed if any of the values are `true`.
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
### methods
|
|
45
|
+
|
|
46
|
+
@default `*`
|
|
47
|
+
|
|
48
|
+
Allowed methods for cross-origin requests by assign `Access-Control-Allow-Methods` header.
|
|
49
|
+
|
|
50
|
+
Value can be one of the following:
|
|
51
|
+
- **undefined | null | ''** - Ignore all methods.
|
|
52
|
+
- **\*** - Allows all methods.
|
|
53
|
+
- **string** - Expects either a single method or a comma-delimited string
|
|
54
|
+
- (eg: `'GET, PUT, POST'`)
|
|
55
|
+
- **string[]** - Allow multiple HTTP methods.
|
|
56
|
+
- eg: `['GET', 'PUT', 'POST']`
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
### allowedHeaders
|
|
61
|
+
|
|
62
|
+
@default `*`
|
|
63
|
+
|
|
64
|
+
Allowed headers for an incoming request by assign `Access-Control-Allow-Headers` header.
|
|
65
|
+
|
|
66
|
+
Value can be one of the following:
|
|
67
|
+
- **string** - Expects either a single header or a comma-delimited string
|
|
68
|
+
- eg: `'Content-Type, Authorization'`.
|
|
69
|
+
- **string[]** - Allow multiple HTTP headers.
|
|
70
|
+
- eg: `['Content-Type', 'Authorization']`
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
### exposeHeaders
|
|
75
|
+
|
|
76
|
+
@default `*`
|
|
77
|
+
|
|
78
|
+
Response CORS with specified headers by sssign Access-Control-Expose-Headers header.
|
|
79
|
+
|
|
80
|
+
Value can be one of the following:
|
|
81
|
+
- **string** - Expects either a single header or a comma-delimited string.
|
|
82
|
+
- eg: `'Content-Type, X-Powered-By'`.
|
|
83
|
+
- **string[]** - Allow multiple HTTP headers.
|
|
84
|
+
- eg: `['Content-Type', 'X-Powered-By']`
|
|
85
|
+
|
|
86
|
+
---
|
|
87
|
+
|
|
88
|
+
### credentials
|
|
89
|
+
|
|
90
|
+
@default `true`
|
|
91
|
+
|
|
92
|
+
The Access-Control-Allow-Credentials response header tells browsers whether to expose the response to the frontend JavaScript code when the request's credentials mode Request.credentials is `include`.
|
|
93
|
+
|
|
94
|
+
Credentials are cookies, authorization headers, or TLS client certificates by assign `Access-Control-Allow-Credentials` header.
|
|
95
|
+
|
|
96
|
+
---
|
|
97
|
+
|
|
98
|
+
### maxAge
|
|
99
|
+
|
|
100
|
+
@default `5`
|
|
101
|
+
|
|
102
|
+
Indicates how long the results of a preflight request that is the information contained in the `Access-Control-Allow-Methods` and `Access-Control-Allow-Headers` headers) can be cached.
|
|
103
|
+
|
|
104
|
+
Assign `Access-Control-Max-Age` header.
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
108
|
+
### preflight
|
|
109
|
+
|
|
110
|
+
The preflight request is a request sent to check if the CORS protocol is understood and if a server is aware of using specific methods and headers.
|
|
111
|
+
|
|
112
|
+
Response with **OPTIONS** request with 3 HTTP request headers:
|
|
113
|
+
- **Access-Control-Request-Method**
|
|
114
|
+
- **Access-Control-Request-Headers**
|
|
115
|
+
- **Origin**
|
|
116
|
+
|
|
117
|
+
This config indicates if the server should respond to preflight requests.
|
|
118
|
+
|
|
119
|
+
---
|
|
120
|
+
|
|
121
|
+
## Pattern
|
|
122
|
+
|
|
123
|
+
Below you can find the common patterns to use the plugin.
|
|
124
|
+
|
|
125
|
+
## Allow CORS by top-level domain
|
|
126
|
+
|
|
127
|
+
```typescript twoslash
|
|
128
|
+
import { Elysia } from 'elysia'
|
|
129
|
+
import { cors } from '@elysiajs/cors'
|
|
130
|
+
|
|
131
|
+
const app = new Elysia()
|
|
132
|
+
.use(
|
|
133
|
+
cors({
|
|
134
|
+
origin: /.*\.saltyaom\.com$/
|
|
135
|
+
})
|
|
136
|
+
)
|
|
137
|
+
.get('/', () => 'Hi')
|
|
138
|
+
.listen(3000)
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
This will allow requests from top-level domains with `saltyaom.com`
|
|
@@ -0,0 +1,265 @@
|
|
|
1
|
+
# Cron Plugin
|
|
2
|
+
|
|
3
|
+
This plugin adds support for running cronjob to Elysia server.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
bun add @elysiajs/cron
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Basic Usage
|
|
12
|
+
```typescript twoslash
|
|
13
|
+
import { Elysia } from 'elysia'
|
|
14
|
+
import { cron } from '@elysiajs/cron'
|
|
15
|
+
|
|
16
|
+
new Elysia()
|
|
17
|
+
.use(
|
|
18
|
+
cron({
|
|
19
|
+
name: 'heartbeat',
|
|
20
|
+
pattern: '*/10 * * * * *',
|
|
21
|
+
run() {
|
|
22
|
+
console.log('Heartbeat')
|
|
23
|
+
}
|
|
24
|
+
})
|
|
25
|
+
)
|
|
26
|
+
.listen(3000)
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
The above code will log `heartbeat` every 10 seconds.
|
|
30
|
+
|
|
31
|
+
## Config
|
|
32
|
+
Below is a config which is accepted by the plugin
|
|
33
|
+
|
|
34
|
+
### cron
|
|
35
|
+
|
|
36
|
+
Create a cronjob for the Elysia server.
|
|
37
|
+
|
|
38
|
+
```
|
|
39
|
+
cron(config: CronConfig, callback: (Instance['store']) => void): this
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
`CronConfig` accepts the parameters specified below:
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
### CronConfig.name
|
|
47
|
+
|
|
48
|
+
Job name to register to `store`.
|
|
49
|
+
|
|
50
|
+
This will register the cron instance to `store` with a specified name, which can be used to reference in later processes eg. stop the job.
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
### CronConfig.pattern
|
|
55
|
+
|
|
56
|
+
Time to run the job as specified by cron syntax.
|
|
57
|
+
|
|
58
|
+
```
|
|
59
|
+
┌────────────── second (optional)
|
|
60
|
+
│ ┌──────────── minute
|
|
61
|
+
│ │ ┌────────── hour
|
|
62
|
+
│ │ │ ┌──────── day of the month
|
|
63
|
+
│ │ │ │ ┌────── month
|
|
64
|
+
│ │ │ │ │ ┌──── day of week
|
|
65
|
+
│ │ │ │ │ │
|
|
66
|
+
* * * * * *
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
### CronConfig.timezone
|
|
72
|
+
Time zone in Europe/Stockholm format
|
|
73
|
+
|
|
74
|
+
---
|
|
75
|
+
|
|
76
|
+
### CronConfig.startAt
|
|
77
|
+
Schedule start time for the job
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
81
|
+
### CronConfig.stopAt
|
|
82
|
+
Schedule stop time for the job
|
|
83
|
+
|
|
84
|
+
---
|
|
85
|
+
|
|
86
|
+
### CronConfig.maxRuns
|
|
87
|
+
Maximum number of executions
|
|
88
|
+
|
|
89
|
+
---
|
|
90
|
+
|
|
91
|
+
### CronConfig.catch
|
|
92
|
+
Continue execution even if an unhandled error is thrown by a triggered function.
|
|
93
|
+
|
|
94
|
+
### CronConfig.interval
|
|
95
|
+
The minimum interval between executions, in seconds.
|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
|
|
99
|
+
## CronConfig.Pattern
|
|
100
|
+
Below you can find the common patterns to use the plugin.
|
|
101
|
+
|
|
102
|
+
---
|
|
103
|
+
|
|
104
|
+
## Pattern
|
|
105
|
+
|
|
106
|
+
Below you can find the common patterns to use the plugin.
|
|
107
|
+
|
|
108
|
+
## Stop cronjob
|
|
109
|
+
|
|
110
|
+
You can stop cronjob manually by accessing the cronjob name registered to `store`.
|
|
111
|
+
|
|
112
|
+
```typescript
|
|
113
|
+
import { Elysia } from 'elysia'
|
|
114
|
+
import { cron } from '@elysiajs/cron'
|
|
115
|
+
|
|
116
|
+
const app = new Elysia()
|
|
117
|
+
.use(
|
|
118
|
+
cron({
|
|
119
|
+
name: 'heartbeat',
|
|
120
|
+
pattern: '*/1 * * * * *',
|
|
121
|
+
run() {
|
|
122
|
+
console.log('Heartbeat')
|
|
123
|
+
}
|
|
124
|
+
})
|
|
125
|
+
)
|
|
126
|
+
.get(
|
|
127
|
+
'/stop',
|
|
128
|
+
({
|
|
129
|
+
store: {
|
|
130
|
+
cron: { heartbeat }
|
|
131
|
+
}
|
|
132
|
+
}) => {
|
|
133
|
+
heartbeat.stop()
|
|
134
|
+
|
|
135
|
+
return 'Stop heartbeat'
|
|
136
|
+
}
|
|
137
|
+
)
|
|
138
|
+
.listen(3000)
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
---
|
|
142
|
+
|
|
143
|
+
## Predefined patterns
|
|
144
|
+
|
|
145
|
+
You can use predefined patterns from `@elysiajs/cron/schedule`
|
|
146
|
+
|
|
147
|
+
```typescript
|
|
148
|
+
import { Elysia } from 'elysia'
|
|
149
|
+
import { cron, Patterns } from '@elysiajs/cron'
|
|
150
|
+
|
|
151
|
+
const app = new Elysia()
|
|
152
|
+
.use(
|
|
153
|
+
cron({
|
|
154
|
+
name: 'heartbeat',
|
|
155
|
+
pattern: Patterns.everySecond(),
|
|
156
|
+
run() {
|
|
157
|
+
console.log('Heartbeat')
|
|
158
|
+
}
|
|
159
|
+
})
|
|
160
|
+
)
|
|
161
|
+
.get(
|
|
162
|
+
'/stop',
|
|
163
|
+
({
|
|
164
|
+
store: {
|
|
165
|
+
cron: { heartbeat }
|
|
166
|
+
}
|
|
167
|
+
}) => {
|
|
168
|
+
heartbeat.stop()
|
|
169
|
+
|
|
170
|
+
return 'Stop heartbeat'
|
|
171
|
+
}
|
|
172
|
+
)
|
|
173
|
+
.listen(3000)
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
### Functions
|
|
177
|
+
|
|
178
|
+
| Function | Description |
|
|
179
|
+
| ---------------------------------------- | ----------------------------------------------------- |
|
|
180
|
+
| `.everySeconds(2)` | Run the task every 2 seconds |
|
|
181
|
+
| `.everyMinutes(5)` | Run the task every 5 minutes |
|
|
182
|
+
| `.everyHours(3)` | Run the task every 3 hours |
|
|
183
|
+
| `.everyHoursAt(3, 15)` | Run the task every 3 hours at 15 minutes |
|
|
184
|
+
| `.everyDayAt('04:19')` | Run the task every day at 04:19 |
|
|
185
|
+
| `.everyWeekOn(Patterns.MONDAY, '19:30')` | Run the task every Monday at 19:30 |
|
|
186
|
+
| `.everyWeekdayAt('17:00')` | Run the task every day from Monday to Friday at 17:00 |
|
|
187
|
+
| `.everyWeekendAt('11:00')` | Run the task on Saturday and Sunday at 11:00 |
|
|
188
|
+
|
|
189
|
+
### Function aliases to constants
|
|
190
|
+
|
|
191
|
+
| Function | Constant |
|
|
192
|
+
| ----------------- | ---------------------------------- |
|
|
193
|
+
| `.everySecond()` | EVERY_SECOND |
|
|
194
|
+
| `.everyMinute()` | EVERY_MINUTE |
|
|
195
|
+
| `.hourly()` | EVERY_HOUR |
|
|
196
|
+
| `.daily()` | EVERY_DAY_AT_MIDNIGHT |
|
|
197
|
+
| `.everyWeekday()` | EVERY_WEEKDAY |
|
|
198
|
+
| `.everyWeekend()` | EVERY_WEEKEND |
|
|
199
|
+
| `.weekly()` | EVERY_WEEK |
|
|
200
|
+
| `.monthly()` | EVERY_1ST_DAY_OF_MONTH_AT_MIDNIGHT |
|
|
201
|
+
| `.everyQuarter()` | EVERY_QUARTER |
|
|
202
|
+
| `.yearly()` | EVERY_YEAR |
|
|
203
|
+
|
|
204
|
+
### Constants
|
|
205
|
+
|
|
206
|
+
| Constant | Pattern |
|
|
207
|
+
| ---------------------------------------- | -------------------- |
|
|
208
|
+
| `.EVERY_SECOND` | `* * * * * *` |
|
|
209
|
+
| `.EVERY_5_SECONDS` | `*/5 * * * * *` |
|
|
210
|
+
| `.EVERY_10_SECONDS` | `*/10 * * * * *` |
|
|
211
|
+
| `.EVERY_30_SECONDS` | `*/30 * * * * *` |
|
|
212
|
+
| `.EVERY_MINUTE` | `*/1 * * * *` |
|
|
213
|
+
| `.EVERY_5_MINUTES` | `0 */5 * * * *` |
|
|
214
|
+
| `.EVERY_10_MINUTES` | `0 */10 * * * *` |
|
|
215
|
+
| `.EVERY_30_MINUTES` | `0 */30 * * * *` |
|
|
216
|
+
| `.EVERY_HOUR` | `0 0-23/1 * * *` |
|
|
217
|
+
| `.EVERY_2_HOURS` | `0 0-23/2 * * *` |
|
|
218
|
+
| `.EVERY_3_HOURS` | `0 0-23/3 * * *` |
|
|
219
|
+
| `.EVERY_4_HOURS` | `0 0-23/4 * * *` |
|
|
220
|
+
| `.EVERY_5_HOURS` | `0 0-23/5 * * *` |
|
|
221
|
+
| `.EVERY_6_HOURS` | `0 0-23/6 * * *` |
|
|
222
|
+
| `.EVERY_7_HOURS` | `0 0-23/7 * * *` |
|
|
223
|
+
| `.EVERY_8_HOURS` | `0 0-23/8 * * *` |
|
|
224
|
+
| `.EVERY_9_HOURS` | `0 0-23/9 * * *` |
|
|
225
|
+
| `.EVERY_10_HOURS` | `0 0-23/10 * * *` |
|
|
226
|
+
| `.EVERY_11_HOURS` | `0 0-23/11 * * *` |
|
|
227
|
+
| `.EVERY_12_HOURS` | `0 0-23/12 * * *` |
|
|
228
|
+
| `.EVERY_DAY_AT_1AM` | `0 01 * * *` |
|
|
229
|
+
| `.EVERY_DAY_AT_2AM` | `0 02 * * *` |
|
|
230
|
+
| `.EVERY_DAY_AT_3AM` | `0 03 * * *` |
|
|
231
|
+
| `.EVERY_DAY_AT_4AM` | `0 04 * * *` |
|
|
232
|
+
| `.EVERY_DAY_AT_5AM` | `0 05 * * *` |
|
|
233
|
+
| `.EVERY_DAY_AT_6AM` | `0 06 * * *` |
|
|
234
|
+
| `.EVERY_DAY_AT_7AM` | `0 07 * * *` |
|
|
235
|
+
| `.EVERY_DAY_AT_8AM` | `0 08 * * *` |
|
|
236
|
+
| `.EVERY_DAY_AT_9AM` | `0 09 * * *` |
|
|
237
|
+
| `.EVERY_DAY_AT_10AM` | `0 10 * * *` |
|
|
238
|
+
| `.EVERY_DAY_AT_11AM` | `0 11 * * *` |
|
|
239
|
+
| `.EVERY_DAY_AT_NOON` | `0 12 * * *` |
|
|
240
|
+
| `.EVERY_DAY_AT_1PM` | `0 13 * * *` |
|
|
241
|
+
| `.EVERY_DAY_AT_2PM` | `0 14 * * *` |
|
|
242
|
+
| `.EVERY_DAY_AT_3PM` | `0 15 * * *` |
|
|
243
|
+
| `.EVERY_DAY_AT_4PM` | `0 16 * * *` |
|
|
244
|
+
| `.EVERY_DAY_AT_5PM` | `0 17 * * *` |
|
|
245
|
+
| `.EVERY_DAY_AT_6PM` | `0 18 * * *` |
|
|
246
|
+
| `.EVERY_DAY_AT_7PM` | `0 19 * * *` |
|
|
247
|
+
| `.EVERY_DAY_AT_8PM` | `0 20 * * *` |
|
|
248
|
+
| `.EVERY_DAY_AT_9PM` | `0 21 * * *` |
|
|
249
|
+
| `.EVERY_DAY_AT_10PM` | `0 22 * * *` |
|
|
250
|
+
| `.EVERY_DAY_AT_11PM` | `0 23 * * *` |
|
|
251
|
+
| `.EVERY_DAY_AT_MIDNIGHT` | `0 0 * * *` |
|
|
252
|
+
| `.EVERY_WEEK` | `0 0 * * 0` |
|
|
253
|
+
| `.EVERY_WEEKDAY` | `0 0 * * 1-5` |
|
|
254
|
+
| `.EVERY_WEEKEND` | `0 0 * * 6,0` |
|
|
255
|
+
| `.EVERY_1ST_DAY_OF_MONTH_AT_MIDNIGHT` | `0 0 1 * *` |
|
|
256
|
+
| `.EVERY_1ST_DAY_OF_MONTH_AT_NOON` | `0 12 1 * *` |
|
|
257
|
+
| `.EVERY_2ND_HOUR` | `0 */2 * * *` |
|
|
258
|
+
| `.EVERY_2ND_HOUR_FROM_1AM_THROUGH_11PM` | `0 1-23/2 * * *` |
|
|
259
|
+
| `.EVERY_2ND_MONTH` | `0 0 1 */2 *` |
|
|
260
|
+
| `.EVERY_QUARTER` | `0 0 1 */3 *` |
|
|
261
|
+
| `.EVERY_6_MONTHS` | `0 0 1 */6 *` |
|
|
262
|
+
| `.EVERY_YEAR` | `0 0 1 1 *` |
|
|
263
|
+
| `.EVERY_30_MINUTES_BETWEEN_9AM_AND_5PM` | `0 */30 9-17 * * *` |
|
|
264
|
+
| `.EVERY_30_MINUTES_BETWEEN_9AM_AND_6PM` | `0 */30 9-18 * * *` |
|
|
265
|
+
| `.EVERY_30_MINUTES_BETWEEN_10AM_AND_7PM` | `0 */30 10-19 * * *` |
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
# GraphQL Apollo
|
|
2
|
+
|
|
3
|
+
Plugin for Elysia to use GraphQL Apollo.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
```bash
|
|
7
|
+
bun add graphql @elysiajs/apollo @apollo/server
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Basic Usage
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { Elysia } from 'elysia'
|
|
14
|
+
import { apollo, gql } from '@elysiajs/apollo'
|
|
15
|
+
|
|
16
|
+
const app = new Elysia()
|
|
17
|
+
.use(
|
|
18
|
+
apollo({
|
|
19
|
+
typeDefs: gql`
|
|
20
|
+
type Book {
|
|
21
|
+
title: String
|
|
22
|
+
author: String
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
type Query {
|
|
26
|
+
books: [Book]
|
|
27
|
+
}
|
|
28
|
+
`,
|
|
29
|
+
resolvers: {
|
|
30
|
+
Query: {
|
|
31
|
+
books: () => {
|
|
32
|
+
return [
|
|
33
|
+
{
|
|
34
|
+
title: 'Elysia',
|
|
35
|
+
author: 'saltyAom'
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
})
|
|
42
|
+
)
|
|
43
|
+
.listen(3000)
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Accessing `/graphql` should show Apollo GraphQL playground work with.
|
|
47
|
+
|
|
48
|
+
## Context
|
|
49
|
+
|
|
50
|
+
Because Elysia is based on Web Standard Request and Response which is different from Node's `HttpRequest` and `HttpResponse` that Express uses, results in `req, res` being undefined in context.
|
|
51
|
+
|
|
52
|
+
Because of this, Elysia replaces both with `context` like route parameters.
|
|
53
|
+
|
|
54
|
+
```typescript
|
|
55
|
+
const app = new Elysia()
|
|
56
|
+
.use(
|
|
57
|
+
apollo({
|
|
58
|
+
typeDefs,
|
|
59
|
+
resolvers,
|
|
60
|
+
context: async ({ request }) => {
|
|
61
|
+
const authorization = request.headers.get('Authorization')
|
|
62
|
+
|
|
63
|
+
return {
|
|
64
|
+
authorization
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
})
|
|
68
|
+
)
|
|
69
|
+
.listen(3000)
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
## Config
|
|
73
|
+
|
|
74
|
+
This plugin extends Apollo's [ServerRegistration](https://www.apollographql.com/docs/apollo-server/api/apollo-server/#options) (which is `ApolloServer`'s' constructor parameter).
|
|
75
|
+
|
|
76
|
+
Below are the extended parameters for configuring Apollo Server with Elysia.
|
|
77
|
+
|
|
78
|
+
### path
|
|
79
|
+
|
|
80
|
+
@default `"/graphql"`
|
|
81
|
+
|
|
82
|
+
Path to expose Apollo Server.
|
|
83
|
+
|
|
84
|
+
---
|
|
85
|
+
|
|
86
|
+
### enablePlayground
|
|
87
|
+
|
|
88
|
+
@default `process.env.ENV !== 'production'`
|
|
89
|
+
|
|
90
|
+
Determine whether should Apollo should provide Apollo Playground.
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
# GraphQL Yoga
|
|
2
|
+
|
|
3
|
+
This plugin integrates GraphQL yoga with Elysia
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
```bash
|
|
7
|
+
bun add @elysiajs/graphql-yoga
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Basic Usage
|
|
11
|
+
```typescript
|
|
12
|
+
import { Elysia } from 'elysia'
|
|
13
|
+
import { yoga } from '@elysiajs/graphql-yoga'
|
|
14
|
+
|
|
15
|
+
const app = new Elysia()
|
|
16
|
+
.use(
|
|
17
|
+
yoga({
|
|
18
|
+
typeDefs: /* GraphQL */ `
|
|
19
|
+
type Query {
|
|
20
|
+
hi: String
|
|
21
|
+
}
|
|
22
|
+
`,
|
|
23
|
+
resolvers: {
|
|
24
|
+
Query: {
|
|
25
|
+
hi: () => 'Hello from Elysia'
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
})
|
|
29
|
+
)
|
|
30
|
+
.listen(3000)
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Accessing `/graphql` in the browser (GET request) would show you a GraphiQL instance for the GraphQL-enabled Elysia server.
|
|
34
|
+
|
|
35
|
+
optional: you can install a custom version of optional peer dependencies as well:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
bun add graphql graphql-yoga
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Resolver
|
|
42
|
+
|
|
43
|
+
Elysia uses Mobius to infer type from **typeDefs** field automatically, allowing you to get full type-safety and auto-complete when typing **resolver** types.
|
|
44
|
+
|
|
45
|
+
## Context
|
|
46
|
+
|
|
47
|
+
You can add custom context to the resolver function by adding **context**
|
|
48
|
+
|
|
49
|
+
```ts
|
|
50
|
+
import { Elysia } from 'elysia'
|
|
51
|
+
import { yoga } from '@elysiajs/graphql-yoga'
|
|
52
|
+
|
|
53
|
+
const app = new Elysia()
|
|
54
|
+
.use(
|
|
55
|
+
yoga({
|
|
56
|
+
typeDefs: /* GraphQL */ `
|
|
57
|
+
type Query {
|
|
58
|
+
hi: String
|
|
59
|
+
}
|
|
60
|
+
`,
|
|
61
|
+
context: {
|
|
62
|
+
name: 'Mobius'
|
|
63
|
+
},
|
|
64
|
+
// If context is a function on this doesn't present
|
|
65
|
+
// for some reason it won't infer context type
|
|
66
|
+
useContext(_) {},
|
|
67
|
+
resolvers: {
|
|
68
|
+
Query: {
|
|
69
|
+
hi: async (parent, args, context) => context.name
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
})
|
|
73
|
+
)
|
|
74
|
+
.listen(3000)
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
## Config
|
|
78
|
+
|
|
79
|
+
This plugin extends [GraphQL Yoga's createYoga options, please refer to the GraphQL Yoga documentation](https://the-guild.dev/graphql/yoga-server/docs) with inlining `schema` config to root.
|
|
80
|
+
|
|
81
|
+
Below is a config which is accepted by the plugin
|
|
82
|
+
|
|
83
|
+
### path
|
|
84
|
+
|
|
85
|
+
@default `/graphql`
|
|
86
|
+
|
|
87
|
+
Endpoint to expose GraphQL handler
|