stacks 0.56.24 → 0.58.18
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/buddy +2 -0
- package/core/.env +38 -0
- package/core/.simple-git-hooks.js +3 -0
- package/core/Caddyfile +23 -0
- package/core/README.md +415 -0
- package/core/buddy +2 -0
- package/core/env.ts +42 -0
- package/core/playwright.config.ts +109 -0
- package/core/scripts/build +84 -0
- package/core/scripts/ensure +33 -0
- package/core/scripts/fresh +14 -0
- package/core/scripts/link +14 -0
- package/core/scripts/move-built-src-files.ts +28 -0
- package/core/scripts/move-dts-files.ts +35 -0
- package/core/scripts/publish +37 -0
- package/core/scripts/setup +176 -0
- package/core/src/actions/README.md +58 -0
- package/core/src/actions/build.ts +5 -0
- package/core/src/actions/dist/src/add.js +29 -0
- package/core/src/actions/dist/src/build/component-libs.js +6 -0
- package/core/src/actions/dist/src/build/core.js +25 -0
- package/core/src/actions/dist/src/build/stacks.js +8 -0
- package/core/src/actions/dist/src/build.js +226 -0
- package/core/src/actions/dist/src/bump.js +8 -0
- package/core/src/actions/dist/src/changelog.js +9 -0
- package/core/src/actions/dist/src/clean.js +6 -0
- package/core/src/actions/dist/src/commit.js +17 -0
- package/core/src/actions/dist/src/copy-types.js +14 -0
- package/core/src/actions/dist/src/database/seed.js +4 -0
- package/core/src/actions/dist/src/deploy/index.js +31 -0
- package/core/src/actions/dist/src/dev/components.js +11 -0
- package/core/src/actions/dist/src/dev/docs.js +7 -0
- package/core/src/actions/dist/src/dev/index.js +90 -0
- package/core/src/actions/dist/src/examples.js +43 -0
- package/core/src/actions/dist/src/fresh.js +18 -0
- package/core/src/actions/dist/src/generate/component-meta.js +57 -0
- package/core/src/actions/dist/src/generate/ide-helpers.js +83 -0
- package/core/src/actions/dist/src/generate/index.js +161 -0
- package/core/src/actions/dist/src/generate/lib-entries.js +168 -0
- package/core/src/actions/dist/src/generate/vscode-custom-data.js +82 -0
- package/core/src/actions/dist/src/generate/vue-compat.js +18 -0
- package/core/src/actions/dist/src/helpers/component-meta.js +50 -0
- package/core/src/actions/dist/src/helpers/index.js +56 -0
- package/core/src/actions/dist/src/helpers/lib-entries.js +160 -0
- package/core/src/actions/dist/src/helpers/package-json.js +135 -0
- package/core/src/actions/dist/src/helpers/utils.js +56 -0
- package/core/src/actions/dist/src/helpers/vscode-custom-data.js +75 -0
- package/core/src/actions/dist/src/helpers/vue-compat.js +16 -0
- package/core/src/actions/dist/src/index.js +577 -0
- package/core/src/actions/dist/src/key-generate.js +10 -0
- package/core/src/actions/dist/src/lint/fix.js +8 -0
- package/core/src/actions/dist/src/lint/index.js +21 -0
- package/core/src/actions/dist/src/make.js +291 -0
- package/core/src/actions/dist/src/prepublish.js +14 -0
- package/core/src/actions/dist/src/release.js +545 -0
- package/core/src/actions/dist/src/test/coverage.js +6 -0
- package/core/src/actions/dist/src/test/feature.js +6 -0
- package/core/src/actions/dist/src/test/ui.js +6 -0
- package/core/src/actions/dist/src/test/unit.js +6 -0
- package/core/src/actions/dist/src/test.js +6 -0
- package/core/src/actions/dist/src/tinker.js +5 -0
- package/core/src/actions/dist/src/typecheck.js +6 -0
- package/core/src/actions/dist/src/types.js +21 -0
- package/core/src/actions/dist/src/upgrade/dependencies.js +6 -0
- package/core/src/actions/dist/src/upgrade/framework.js +1 -0
- package/core/src/actions/dist/src/upgrade/index.js +1 -0
- package/core/src/actions/dist/src/upgrade.js +39 -0
- package/core/src/actions/package.json +89 -0
- package/core/src/actions/src/action.ts +11 -0
- package/core/src/actions/src/actions.ts +2 -0
- package/core/src/actions/src/add.ts +27 -0
- package/core/src/actions/src/ai/request-model-access.ts +74 -0
- package/core/src/actions/src/build/component-libs.ts +5 -0
- package/core/src/actions/src/build/core.ts +66 -0
- package/core/src/actions/src/build/desktop.ts +7 -0
- package/core/src/actions/src/build/stacks.ts +7 -0
- package/core/src/actions/src/build.ts +89 -0
- package/core/src/actions/src/bump.ts +11 -0
- package/core/src/actions/src/cdn/invalidate-cache.ts +27 -0
- package/core/src/actions/src/changelog.ts +11 -0
- package/core/src/actions/src/clean.ts +6 -0
- package/core/src/actions/src/commit.ts +14 -0
- package/core/src/actions/src/copy-types.ts +22 -0
- package/core/src/actions/src/database/fields.ts +111 -0
- package/core/src/actions/src/database/migration-mysql.ts +72 -0
- package/core/src/actions/src/database/migration-sqlite.ts +67 -0
- package/core/src/actions/src/database/migration.ts +10 -0
- package/core/src/actions/src/database/mydb.sqlite +0 -0
- package/core/src/actions/src/database/seed.ts +4 -0
- package/core/src/actions/src/database/stacks.sqlite +0 -0
- package/core/src/actions/src/database/user-migration.ts +20 -0
- package/core/src/actions/src/deploy/create-receipt-rule.ts +55 -0
- package/core/src/actions/src/deploy/index.ts +46 -0
- package/core/src/actions/src/dev/api.ts +19 -0
- package/core/src/actions/src/dev/components.ts +14 -0
- package/core/src/actions/src/dev/desktop.ts +7 -0
- package/core/src/actions/src/dev/docs.ts +7 -0
- package/core/src/actions/src/dev/index.ts +38 -0
- package/core/src/actions/src/dev/views.ts +7 -0
- package/core/src/actions/src/domains/add.ts +82 -0
- package/core/src/actions/src/domains/purchase.ts +76 -0
- package/core/src/actions/src/domains/remove.ts +38 -0
- package/core/src/actions/src/examples.ts +46 -0
- package/core/src/actions/src/fresh.ts +20 -0
- package/core/src/actions/src/generate/caddyfile.ts +1 -0
- package/core/src/actions/src/generate/component-meta.ts +15 -0
- package/core/src/actions/src/generate/env-files.ts +89 -0
- package/core/src/actions/src/generate/ide-helpers.ts +20 -0
- package/core/src/actions/src/generate/index.ts +141 -0
- package/core/src/actions/src/generate/lib-entries.ts +17 -0
- package/core/src/actions/src/generate/model-classes.ts +299 -0
- package/core/src/actions/src/generate/model-generate.ts +12 -0
- package/core/src/actions/src/generate/pkgx-file.ts +72 -0
- package/core/src/actions/src/generate/vscode-custom-data.ts +16 -0
- package/core/src/actions/src/generate/vue-compat.ts +10 -0
- package/core/src/actions/src/helpers/component-meta.ts +93 -0
- package/core/src/actions/src/helpers/index.ts +1 -0
- package/core/src/actions/src/helpers/lib-entries.ts +139 -0
- package/core/src/actions/src/helpers/package-json.ts +96 -0
- package/core/src/actions/src/helpers/utils.ts +82 -0
- package/core/src/actions/src/helpers/vscode-custom-data.ts +28 -0
- package/core/src/actions/src/helpers/vue-compat.ts +16 -0
- package/core/src/actions/src/index.ts +29 -0
- package/core/src/actions/src/key-generate.ts +10 -0
- package/core/src/actions/src/lint/fix.ts +7 -0
- package/core/src/actions/src/lint/index.ts +19 -0
- package/core/src/actions/src/make.ts +322 -0
- package/core/src/actions/src/migrate/database.ts +1 -0
- package/core/src/actions/src/migrate/dns.ts +3 -0
- package/core/src/actions/src/prepublish.ts +17 -0
- package/core/src/actions/src/release.ts +15 -0
- package/core/src/actions/src/start-caddy.ts +13 -0
- package/core/src/actions/src/test/coverage.ts +5 -0
- package/core/src/actions/src/test/feature.ts +5 -0
- package/core/src/actions/src/test/ui.ts +5 -0
- package/core/src/actions/src/test/unit.ts +5 -0
- package/core/src/actions/src/test.ts +5 -0
- package/core/src/actions/src/tinker.ts +10 -0
- package/core/src/actions/src/typecheck.ts +5 -0
- package/core/src/actions/src/types.ts +20 -0
- package/core/src/actions/src/upgrade/bun.ts +4 -0
- package/core/src/actions/src/upgrade/framework.ts +30 -0
- package/core/src/actions/src/upgrade/index.ts +25 -0
- package/core/src/actions/src/upgrade.ts +65 -0
- package/core/src/actions/src/zip/api.ts +22 -0
- package/core/src/actions/tests/example.test.ts +5 -0
- package/core/src/ai/README.md +67 -0
- package/core/src/ai/build.ts +9 -0
- package/core/src/ai/package.json +59 -0
- package/core/src/ai/src/index.ts +8 -0
- package/core/src/ai/src/text-generation.ts +0 -0
- package/core/src/ai/src/text-summary.ts +0 -0
- package/core/src/ai/src/utils/client-bedrock-runtime.ts +38 -0
- package/core/src/ai/src/utils/client-bedrock.ts +53 -0
- package/core/src/ai/tests/example.test.ts +5 -0
- package/core/src/alias/README.md +53 -0
- package/core/src/alias/build.ts +8 -0
- package/core/src/alias/dist/index.js +218 -0
- package/core/src/alias/package.json +51 -0
- package/core/src/alias/src/index.ts +220 -0
- package/core/src/alias/tests/example.test.ts +5 -0
- package/core/src/analytics/README.md +55 -0
- package/core/src/analytics/build.ts +8 -0
- package/core/src/analytics/dist/index.js +5 -0
- package/core/src/analytics/package.json +54 -0
- package/core/src/analytics/src/drivers/fathom.ts +1 -0
- package/core/src/analytics/src/drivers/index.ts +1 -0
- package/core/src/analytics/src/index.ts +1 -0
- package/core/src/analytics/tests/example.test.ts +5 -0
- package/core/src/api/build.ts +7 -0
- package/core/src/api/package.json +61 -0
- package/core/src/api/src/index.ts +114 -0
- package/core/src/arrays/README.md +59 -0
- package/core/src/arrays/build.ts +8 -0
- package/core/src/arrays/dist/index.js +469 -0
- package/core/src/arrays/package.json +59 -0
- package/core/src/arrays/src/arr.ts +3 -0
- package/core/src/arrays/src/contains.ts +87 -0
- package/core/src/arrays/src/helpers.ts +272 -0
- package/core/src/arrays/src/index.ts +3 -0
- package/core/src/arrays/src/macro.ts +131 -0
- package/core/src/arrays/src/math.ts +220 -0
- package/core/src/arrays/tests/example.test.ts +5 -0
- package/core/src/auth/README.md +59 -0
- package/core/src/auth/build.ts +8 -0
- package/core/src/auth/dist/index.js +5 -0
- package/core/src/auth/package.json +50 -0
- package/core/src/auth/tests/example.test.ts +5 -0
- package/core/src/bud +2 -0
- package/core/src/buddy/README.md +390 -0
- package/core/src/buddy/art/social.jpg +0 -0
- package/core/src/buddy/build.ts +8 -0
- package/core/src/buddy/dist/chunk-815e657d8c6ba584.js +1677 -0
- package/core/src/buddy/dist/chunk-b75e6db0012faa55.js +22 -0
- package/core/src/buddy/dist/cli.js +49 -0
- package/core/src/buddy/dist/index.js +70 -0
- package/core/src/buddy/package.json +174 -0
- package/core/src/buddy/src/cli.ts +51 -0
- package/core/src/buddy/src/commands/add.ts +65 -0
- package/core/src/buddy/src/commands/build.ts +172 -0
- package/core/src/buddy/src/commands/changelog.ts +36 -0
- package/core/src/buddy/src/commands/clean.ts +34 -0
- package/core/src/buddy/src/commands/cloud.ts +299 -0
- package/core/src/buddy/src/commands/commit.ts +22 -0
- package/core/src/buddy/src/commands/configure.ts +65 -0
- package/core/src/buddy/src/commands/create.ts +131 -0
- package/core/src/buddy/src/commands/deploy.ts +99 -0
- package/core/src/buddy/src/commands/dev.ts +228 -0
- package/core/src/buddy/src/commands/dns.ts +78 -0
- package/core/src/buddy/src/commands/domains.ts +156 -0
- package/core/src/buddy/src/commands/example.ts +62 -0
- package/core/src/buddy/src/commands/fresh.ts +34 -0
- package/core/src/buddy/src/commands/generate.ts +142 -0
- package/core/src/buddy/src/commands/http.ts +53 -0
- package/core/src/buddy/src/commands/index.ts +30 -0
- package/core/src/buddy/src/commands/inspire.ts +24 -0
- package/core/src/buddy/src/commands/install.ts +26 -0
- package/core/src/buddy/src/commands/key.ts +32 -0
- package/core/src/buddy/src/commands/lint.ts +49 -0
- package/core/src/buddy/src/commands/make.ts +259 -0
- package/core/src/buddy/src/commands/migrate.ts +55 -0
- package/core/src/buddy/src/commands/prepublish.ts +23 -0
- package/core/src/buddy/src/commands/release.ts +33 -0
- package/core/src/buddy/src/commands/seed.ts +36 -0
- package/core/src/buddy/src/commands/setup.ts +116 -0
- package/core/src/buddy/src/commands/test.ts +122 -0
- package/core/src/buddy/src/commands/tinker.ts +34 -0
- package/core/src/buddy/src/commands/types.ts +30 -0
- package/core/src/buddy/src/commands/upgrade.ts +109 -0
- package/core/src/buddy/src/commands/version.ts +24 -0
- package/core/src/buddy/src/compile.ts +9 -0
- package/core/src/build/README.md +59 -0
- package/core/src/build/build.ts +8 -0
- package/core/src/build/dist/index.js +19 -0
- package/core/src/build/package.json +63 -0
- package/core/src/build/src/index.ts +11 -0
- package/core/src/build/tests/example.test.ts +5 -0
- package/core/src/build/web-types.ts +15 -0
- package/core/src/bun-create/bud/README.md +45 -0
- package/core/src/bun-create/bud/package.json +152 -0
- package/core/src/bun-create/buddy/README.md +45 -0
- package/core/src/bun-create/buddy/package.json +152 -0
- package/core/src/bun-create/stack/README.md +45 -0
- package/core/src/bun-create/stack/package.json +152 -0
- package/core/src/bun-create/stacks/README.md +45 -0
- package/core/src/bun-create/stacks/package.json +152 -0
- package/core/src/bun-create/stx/README.md +45 -0
- package/core/src/bun-create/stx/package.json +152 -0
- package/core/src/bun-plugin-yaml/README.md +56 -0
- package/core/src/bun-plugin-yaml/build.ts +8 -0
- package/core/src/bun-plugin-yaml/dist/index.js +2781 -0
- package/core/src/bun-plugin-yaml/package.json +57 -0
- package/core/src/bun-plugin-yaml/src/index.ts +22 -0
- package/core/src/bun-plugin-yaml/tests/example.test.ts +5 -0
- package/core/src/cache/README.md +59 -0
- package/core/src/cache/build.ts +8 -0
- package/core/src/cache/dist/index.js +88 -0
- package/core/src/cache/package.json +65 -0
- package/core/src/cache/src/drivers/index.ts +2 -0
- package/core/src/cache/src/drivers/redis.ts +37 -0
- package/core/src/cache/src/index.ts +1 -0
- package/core/src/cache/tests/DynamoDB.test.ts +135 -0
- package/core/src/cache/tests/Memcached.test.ts +51 -0
- package/core/src/cache/tests/Redis.test.ts +84 -0
- package/core/src/chat/README.md +83 -0
- package/core/src/chat/build.ts +8 -0
- package/core/src/chat/dist/index.js +42 -0
- package/core/src/chat/package.json +73 -0
- package/core/src/chat/tests/example.test.ts +5 -0
- package/core/src/cli/README.md +168 -0
- package/core/src/cli/build.ts +8 -0
- package/core/src/cli/dist/index.js +372 -0
- package/core/src/cli/package.json +90 -0
- package/core/src/cli/src/actions/install.ts +40 -0
- package/core/src/cli/src/cli.ts +52 -0
- package/core/src/cli/src/command.ts +47 -0
- package/core/src/cli/src/console.ts +79 -0
- package/core/src/cli/src/exec.ts +89 -0
- package/core/src/cli/src/helpers.ts +90 -0
- package/core/src/cli/src/index.ts +10 -0
- package/core/src/cli/src/parse.ts +101 -0
- package/core/src/cli/src/run.ts +97 -0
- package/core/src/cli/src/utilities.ts +2 -0
- package/core/src/cli/tests/example.test.ts +5 -0
- package/core/src/cloud/README.md +67 -0
- package/core/src/cloud/build-server.ts +8 -0
- package/core/src/cloud/build.ts +8 -0
- package/core/src/cloud/cdk.json +62 -0
- package/core/src/cloud/deploy.ts +75 -0
- package/core/src/cloud/dist/origin-request.js +27 -0
- package/core/src/cloud/package.json +119 -0
- package/core/src/cloud/src/cloud/ai.ts +115 -0
- package/core/src/cloud/src/cloud/aws-sdk-layer/nodejs/package-lock.json +386 -0
- package/core/src/cloud/src/cloud/aws-sdk-layer/nodejs/package.json +15 -0
- package/core/src/cloud/src/cloud/cache.ts +0 -0
- package/core/src/cloud/src/cloud/cdn.ts +335 -0
- package/core/src/cloud/src/cloud/compute.ts +79 -0
- package/core/src/cloud/src/cloud/dashboard.ts +85 -0
- package/core/src/cloud/src/cloud/database.ts +0 -0
- package/core/src/cloud/src/cloud/deployment.ts +41 -0
- package/core/src/cloud/src/cloud/dns.ts +34 -0
- package/core/src/cloud/src/cloud/docs.ts +51 -0
- package/core/src/cloud/src/cloud/email.ts +339 -0
- package/core/src/cloud/src/cloud/file-system.ts +35 -0
- package/core/src/cloud/src/cloud/index.ts +93 -0
- package/core/src/cloud/src/cloud/jump-box.ts +48 -0
- package/core/src/cloud/src/cloud/lambda/ask/index.js +35 -0
- package/core/src/cloud/src/cloud/lambda/summarize/index.js +35 -0
- package/core/src/cloud/src/cloud/network.ts +52 -0
- package/core/src/cloud/src/cloud/permissions.ts +33 -0
- package/core/src/cloud/src/cloud/queue.ts +0 -0
- package/core/src/cloud/src/cloud/redirects.ts +45 -0
- package/core/src/cloud/src/cloud/search-engine.ts +108 -0
- package/core/src/cloud/src/cloud/security.ts +259 -0
- package/core/src/cloud/src/cloud/storage.ts +168 -0
- package/core/src/cloud/src/edge/origin-request.ts +49 -0
- package/core/src/cloud/src/helpers.ts +597 -0
- package/core/src/cloud/src/index.ts +2 -0
- package/core/src/cloud/src/runtime/README.md +116 -0
- package/core/src/cloud/src/runtime/bootstrap +3 -0
- package/core/src/cloud/src/runtime/example/lambda.ts +36 -0
- package/core/src/cloud/src/runtime/runtime.ts +829 -0
- package/core/src/cloud/src/runtime/scripts/build-layer.ts +104 -0
- package/core/src/cloud/src/runtime/scripts/publish-layer.ts +110 -0
- package/core/src/cloud/src/runtime/server.ts +39 -0
- package/core/src/cloud/src/server/.dockerignore +15 -0
- package/core/src/cloud/src/server/Dockerfile +20 -0
- package/core/src/cloud/src/server/index.ts +39 -0
- package/core/src/cloud/src/server/package.json +12 -0
- package/core/src/cloud/src/server/runtime.ts +828 -0
- package/core/src/cloud/src/types.ts +28 -0
- package/core/src/cloud/tests/example.test.ts +5 -0
- package/core/src/cloud/zip.ts +8 -0
- package/core/src/collections/README.md +71 -0
- package/core/src/collections/build.ts +8 -0
- package/core/src/collections/dist/index.js +6 -0
- package/core/src/collections/package.json +57 -0
- package/core/src/collections/tests/example.test.ts +5 -0
- package/core/src/config/README.md +71 -0
- package/core/src/config/build.ts +8 -0
- package/core/src/config/dist/index.js +1670 -0
- package/core/src/config/package.json +55 -0
- package/core/src/config/src/config.ts +38 -0
- package/core/src/config/src/defaults.ts +460 -0
- package/core/src/config/src/helpers.ts +256 -0
- package/core/src/config/src/index.ts +2 -0
- package/core/src/config/src/overrides.ts +49 -0
- package/core/src/config/tests/example.test.ts +5 -0
- package/core/src/database/README.md +59 -0
- package/core/src/database/build.ts +8 -0
- package/core/src/database/dist/index.js +200 -0
- package/core/src/database/package.json +78 -0
- package/core/src/database/src/index.ts +63 -0
- package/core/src/database/src/kysely-bun-worker/driver.ts +143 -0
- package/core/src/database/src/kysely-bun-worker/index.ts +46 -0
- package/core/src/database/src/kysely-bun-worker/mitt.ts +24 -0
- package/core/src/database/src/kysely-bun-worker/type.ts +40 -0
- package/core/src/database/src/kysely-bun-worker/worker.ts +53 -0
- package/core/src/database/src/migrations/index.ts +73 -0
- package/core/src/database/src/seeder/index.ts +79 -0
- package/core/src/database/tests/example.test.ts +5 -0
- package/core/src/datetime/README.md +66 -0
- package/core/src/datetime/build.ts +8 -0
- package/core/src/datetime/dist/index.js +9 -0
- package/core/src/datetime/package.json +56 -0
- package/core/src/datetime/tests/example.test.ts +5 -0
- package/core/src/desktop/README.md +49 -0
- package/core/src/desktop/build.ts +8 -0
- package/core/src/desktop/dist/index.js +3075 -0
- package/core/src/desktop/package.json +84 -0
- package/core/src/desktop/src/index.ts +41 -0
- package/core/src/desktop/tests/example.test.ts +5 -0
- package/core/src/development/README.md +27 -0
- package/core/src/development/build.ts +8 -0
- package/core/src/development/dist/index.js +6 -0
- package/core/src/development/package.json +77 -0
- package/core/src/development/src/index.ts +0 -0
- package/core/src/development/tests/example.test.ts +5 -0
- package/core/src/dns/README.md +56 -0
- package/core/src/dns/build.ts +8 -0
- package/core/src/dns/dist/index.js +166 -0
- package/core/src/dns/package.json +76 -0
- package/core/src/dns/src/drivers/aws.ts +224 -0
- package/core/src/dns/src/index.ts +20 -0
- package/core/src/dns/tests/example.test.ts +5 -0
- package/core/src/docs/README.md +59 -0
- package/core/src/docs/build.ts +8 -0
- package/core/src/docs/dist/index.js +214608 -0
- package/core/src/docs/package.json +68 -0
- package/core/src/docs/src/index.ts +61 -0
- package/core/src/docs/src/plugins.ts +4 -0
- package/core/src/docs/tests/example.test.ts +5 -0
- package/core/src/email/README.md +155 -0
- package/core/src/email/build-inbound.ts +8 -0
- package/core/src/email/build.ts +8 -0
- package/core/src/email/dist/index.js +325 -0
- package/core/src/email/email-forwarder.cjs +406 -0
- package/core/src/email/email-forwarder.zip +0 -0
- package/core/src/email/package.json +94 -0
- package/core/src/email/src/drivers/emailjs.ts +23 -0
- package/core/src/email/src/drivers/index.ts +9 -0
- package/core/src/email/src/drivers/mailgun.ts +21 -0
- package/core/src/email/src/drivers/mailjet.ts +21 -0
- package/core/src/email/src/drivers/mandrill.ts +19 -0
- package/core/src/email/src/drivers/netcore.ts +19 -0
- package/core/src/email/src/drivers/nodemailer.ts +23 -0
- package/core/src/email/src/drivers/postmark.ts +19 -0
- package/core/src/email/src/drivers/sendgrid.ts +20 -0
- package/core/src/email/src/drivers/ses.ts +22 -0
- package/core/src/email/src/index.ts +1 -0
- package/core/src/email/src/send.ts +37 -0
- package/core/src/email/src/server/converter.ts +304 -0
- package/core/src/email/src/server/inbound.ts +389 -0
- package/core/src/email/src/server/outbound.ts +294 -0
- package/core/src/email/tests/example.test.ts +5 -0
- package/core/src/enums/README.md +54 -0
- package/core/src/enums/build.ts +8 -0
- package/core/src/enums/dist/index.js +98 -0
- package/core/src/enums/package.json +50 -0
- package/core/src/enums/src/index.ts +95 -0
- package/core/src/enums/tests/example.test.ts +5 -0
- package/core/src/env/README.md +71 -0
- package/core/src/env/build.ts +8 -0
- package/core/src/env/dist/index.js +221 -0
- package/core/src/env/package.json +55 -0
- package/core/src/env/src/index.ts +76 -0
- package/core/src/env/src/types.ts +54 -0
- package/core/src/env/tests/example.test.ts +5 -0
- package/core/src/error-handling/README.md +131 -0
- package/core/src/error-handling/build.ts +8 -0
- package/core/src/error-handling/dist/index.js +432 -0
- package/core/src/error-handling/package.json +62 -0
- package/core/src/error-handling/src/handler.ts +51 -0
- package/core/src/error-handling/src/index.ts +2 -0
- package/core/src/error-handling/tests/example.test.ts +5 -0
- package/core/src/eslint-config/.gitattributes +2 -0
- package/core/src/eslint-config/README.md +587 -0
- package/core/src/eslint-config/build.ts +8 -0
- package/core/src/eslint-config/package.json +119 -0
- package/core/src/eslint-config/src/configs/comments.ts +19 -0
- package/core/src/eslint-config/src/configs/formatters.ts +187 -0
- package/core/src/eslint-config/src/configs/ignores.ts +10 -0
- package/core/src/eslint-config/src/configs/imports.ts +37 -0
- package/core/src/eslint-config/src/configs/index.ts +21 -0
- package/core/src/eslint-config/src/configs/javascript.ts +226 -0
- package/core/src/eslint-config/src/configs/jsdoc.ts +42 -0
- package/core/src/eslint-config/src/configs/jsonc.ts +86 -0
- package/core/src/eslint-config/src/configs/markdown.ts +110 -0
- package/core/src/eslint-config/src/configs/node.ts +23 -0
- package/core/src/eslint-config/src/configs/perfectionist.ts +18 -0
- package/core/src/eslint-config/src/configs/react.ts +111 -0
- package/core/src/eslint-config/src/configs/sort.ts +223 -0
- package/core/src/eslint-config/src/configs/stylistic.ts +57 -0
- package/core/src/eslint-config/src/configs/svelte.ts +106 -0
- package/core/src/eslint-config/src/configs/test.ts +54 -0
- package/core/src/eslint-config/src/configs/toml.ts +72 -0
- package/core/src/eslint-config/src/configs/typescript.ts +156 -0
- package/core/src/eslint-config/src/configs/unicorn.ts +41 -0
- package/core/src/eslint-config/src/configs/unocss.ts +43 -0
- package/core/src/eslint-config/src/configs/vue.ts +169 -0
- package/core/src/eslint-config/src/configs/yaml.ts +72 -0
- package/core/src/eslint-config/src/factory.ts +260 -0
- package/core/src/eslint-config/src/globs.ts +92 -0
- package/core/src/eslint-config/src/index.ts +9 -0
- package/core/src/eslint-config/src/plugins.ts +10 -0
- package/core/src/eslint-config/src/stub.d.ts +3 -0
- package/core/src/eslint-config/src/types.ts +366 -0
- package/core/src/eslint-config/src/utils.ts +72 -0
- package/core/src/eslint-config/src/vendor/prettier-types.ts +136 -0
- package/core/src/eslint-config/test/cli.spec.ts +90 -0
- package/core/src/eslint-config/test/fixtures.test.ts +125 -0
- package/core/src/eslint-config/tsconfig.json +17 -0
- package/core/src/eslint-config/tsup.config.ts +8 -0
- package/core/src/events/README.md +76 -0
- package/core/src/events/build.ts +8 -0
- package/core/src/events/dist/index.js +63 -0
- package/core/src/events/package.json +52 -0
- package/core/src/events/src/index.ts +170 -0
- package/core/src/events/tests/example.test.ts +5 -0
- package/core/src/faker/README.md +53 -0
- package/core/src/faker/build.ts +8 -0
- package/core/src/faker/dist/index.js +6 -0
- package/core/src/faker/package.json +61 -0
- package/core/src/faker/tests/example.test.ts +5 -0
- package/core/src/git/README.md +65 -0
- package/core/src/git/build.ts +8 -0
- package/core/src/git/dist/index.js +6 -0
- package/core/src/git/package.json +68 -0
- package/core/src/git/src/index.ts +1 -0
- package/core/src/git/tests/example.test.ts +5 -0
- package/core/src/health/README.md +56 -0
- package/core/src/health/build.ts +8 -0
- package/core/src/health/dist/index.js +9 -0
- package/core/src/health/package.json +58 -0
- package/core/src/health/src/drivers/index.ts +1 -0
- package/core/src/health/src/drivers/ohdear.ts +1 -0
- package/core/src/health/src/index.ts +2 -0
- package/core/src/health/src/notifications/index.ts +1 -0
- package/core/src/health/tests/example.test.ts +5 -0
- package/core/src/http/README.md +59 -0
- package/core/src/http/build.ts +8 -0
- package/core/src/http/dist/index.js +65 -0
- package/core/src/http/package.json +52 -0
- package/core/src/http/src/index.ts +71 -0
- package/core/src/index.ts +57 -0
- package/core/src/lint/.eslintrc.json +3 -0
- package/core/src/lint/README.md +73 -0
- package/core/src/lint/build.ts +8 -0
- package/core/src/lint/dist/index.js +6 -0
- package/core/src/lint/package.json +69 -0
- package/core/src/lint/tests/example.test.ts +5 -0
- package/core/src/logging/README.md +58 -0
- package/core/src/logging/build.ts +8 -0
- package/core/src/logging/dist/index.js +1809 -0
- package/core/src/logging/package.json +61 -0
- package/core/src/logging/src/index.ts +27 -0
- package/core/src/logging/tests/example.test.ts +5 -0
- package/core/src/music/package.json +46 -0
- package/core/src/music/src/components/SampleComponent.stx +5 -0
- package/core/src/music/src/layouts/default.stx +3 -0
- package/core/src/music/src/pages/index.stx +10 -0
- package/core/src/music/src/pages/music.stx +10 -0
- package/core/src/music/src/styles/main.css +1 -0
- package/core/src/notifications/README.md +272 -0
- package/core/src/notifications/build.ts +8 -0
- package/core/src/notifications/dist/index.js +54 -0
- package/core/src/notifications/package.json +103 -0
- package/core/src/notifications/src/drivers/index.ts +4 -0
- package/core/src/notifications/src/index.ts +51 -0
- package/core/src/notifications/src/tailwind.config.ts +39 -0
- package/core/src/notifications/src/utils/config.ts +5 -0
- package/core/src/notifications/tests/chat/Slack.test.ts +34 -0
- package/core/src/notifications/tests/email/Mailgun.test.ts +40 -0
- package/core/src/notifications/tests/email/Sendgrid.test.ts +40 -0
- package/core/src/notifications/tests/sms/Twilio.test.ts +37 -0
- package/core/src/objects/README.md +71 -0
- package/core/src/objects/build.ts +8 -0
- package/core/src/objects/dist/index.js +64 -0
- package/core/src/objects/package.json +63 -0
- package/core/src/objects/src/index.ts +145 -0
- package/core/src/objects/tests/example.test.ts +5 -0
- package/core/src/orm/README.md +48 -0
- package/core/src/orm/build.ts +8 -0
- package/core/src/orm/dist/index.js +6 -0
- package/core/src/orm/package.json +59 -0
- package/core/src/orm/src/index.ts +49 -0
- package/core/src/orm/tests/example.test.ts +5 -0
- package/core/src/path/README.md +64 -0
- package/core/src/path/build.ts +8 -0
- package/core/src/path/dist/index.js +495 -0
- package/core/src/path/package.json +54 -0
- package/core/src/path/src/index.ts +529 -0
- package/core/src/path/tests/example.test.ts +5 -0
- package/core/src/payments/README.md +64 -0
- package/core/src/payments/build.ts +8 -0
- package/core/src/payments/dist/index.js +6261 -0
- package/core/src/payments/package.json +60 -0
- package/core/src/payments/src/drivers/stripe.ts +116 -0
- package/core/src/payments/tests/example.test.ts +5 -0
- package/core/src/push/README.md +71 -0
- package/core/src/push/build.ts +9 -0
- package/core/src/push/package.json +64 -0
- package/core/src/push/src/drivers/expo.ts +21 -0
- package/core/src/push/src/drivers/fcm.ts +21 -0
- package/core/src/push/src/drivers/index.ts +2 -0
- package/core/src/push/src/index.ts +1 -0
- package/core/src/push/tests/example.test.ts +5 -0
- package/core/src/query-builder/README.md +48 -0
- package/core/src/query-builder/build.ts +8 -0
- package/core/src/query-builder/dist/index.js +18 -0
- package/core/src/query-builder/package.json +59 -0
- package/core/src/query-builder/src/kysely.ts +38 -0
- package/core/src/query-builder/tests/example.test.ts +5 -0
- package/core/src/queue/README.md +59 -0
- package/core/src/queue/build.ts +8 -0
- package/core/src/queue/dist/index.js +19 -0
- package/core/src/queue/package.json +55 -0
- package/core/src/queue/src/index.ts +17 -0
- package/core/src/queue/tests/example.test.ts +5 -0
- package/core/src/realtime/README.md +59 -0
- package/core/src/realtime/build.ts +8 -0
- package/core/src/realtime/dist/index.js +6 -0
- package/core/src/realtime/package.json +52 -0
- package/core/src/realtime/src/drivers/index.ts +1 -0
- package/core/src/realtime/src/index.ts +1 -0
- package/core/src/realtime/tests/example.test.ts +5 -0
- package/core/src/repl/README.md +53 -0
- package/core/src/repl/build.ts +8 -0
- package/core/src/repl/dist/index.js +6 -0
- package/core/src/repl/package.json +59 -0
- package/core/src/repl/tests/example.test.ts +5 -0
- package/core/src/router/README.md +59 -0
- package/core/src/router/build.ts +8 -0
- package/core/src/router/dist/index.js +841 -0
- package/core/src/router/package.json +62 -0
- package/core/src/router/src/index.ts +4 -0
- package/core/src/router/src/middleware.ts +34 -0
- package/core/src/router/src/request.ts +44 -0
- package/core/src/router/src/router.ts +162 -0
- package/core/src/router/src/server.ts +154 -0
- package/core/src/router/tests/example.test.ts +5 -0
- package/core/src/scheduler/README.md +137 -0
- package/core/src/scheduler/build.ts +8 -0
- package/core/src/scheduler/dist/index.js +208 -0
- package/core/src/scheduler/package.json +56 -0
- package/core/src/scheduler/src/index.ts +321 -0
- package/core/src/scheduler/tests/example.test.ts +5 -0
- package/core/src/search-engine/README.md +66 -0
- package/core/src/search-engine/build.ts +8 -0
- package/core/src/search-engine/dist/index.js +89 -0
- package/core/src/search-engine/package.json +67 -0
- package/core/src/search-engine/src/drivers/index.ts +1 -0
- package/core/src/search-engine/src/drivers/meilisearch.ts +124 -0
- package/core/src/search-engine/src/drivers/opensearch.ts +59 -0
- package/core/src/search-engine/src/helpers.ts +138 -0
- package/core/src/search-engine/src/index.ts +69 -0
- package/core/src/search-engine/tests/example.test.ts +5 -0
- package/core/src/security/README.md +66 -0
- package/core/src/security/build.ts +8 -0
- package/core/src/security/dist/index.js +3288 -0
- package/core/src/security/package.json +65 -0
- package/core/src/security/src/crypt.ts +23 -0
- package/core/src/security/src/hash.ts +54 -0
- package/core/src/security/src/key.ts +11 -0
- package/core/src/security/tests/example.test.ts +5 -0
- package/core/src/server/README.md +51 -0
- package/core/src/server/build.ts +8 -0
- package/core/src/server/dist/index.js +48 -0
- package/core/src/server/package.json +67 -0
- package/core/src/server/src/api.ts +5 -0
- package/core/src/server/src/config.ts +59 -0
- package/core/src/server/src/index.ts +1 -0
- package/core/src/server/tests/example.test.ts +5 -0
- package/core/src/signals/README.md +105 -0
- package/core/src/signals/build.ts +8 -0
- package/core/src/signals/dist/index.js +9 -0
- package/core/src/signals/package.json +63 -0
- package/core/src/signals/tests/example.test.ts +5 -0
- package/core/src/slug/README.md +59 -0
- package/core/src/slug/build.ts +8 -0
- package/core/src/slug/dist/index.js +5 -0
- package/core/src/slug/package.json +65 -0
- package/core/src/slug/src/index.ts +56 -0
- package/core/src/slug/tests/example.test.ts +5 -0
- package/core/src/sms/README.md +137 -0
- package/core/src/sms/build.ts +9 -0
- package/core/src/sms/package.json +82 -0
- package/core/src/sms/src/drivers/index.ts +8 -0
- package/core/src/sms/src/index.ts +1 -0
- package/core/src/sms/tests/example.test.ts +5 -0
- package/core/src/storage/README.md +74 -0
- package/core/src/storage/build.ts +8 -0
- package/core/src/storage/dist/index.js +798 -0
- package/core/src/storage/package.json +77 -0
- package/core/src/storage/src/copy.ts +42 -0
- package/core/src/storage/src/delete.ts +131 -0
- package/core/src/storage/src/drivers/aws.ts +15 -0
- package/core/src/storage/src/drivers/index.ts +1 -0
- package/core/src/storage/src/files.ts +182 -0
- package/core/src/storage/src/folders.ts +51 -0
- package/core/src/storage/src/fs.ts +9 -0
- package/core/src/storage/src/glob.ts +1 -0
- package/core/src/storage/src/hash.ts +39 -0
- package/core/src/storage/src/helpers.ts +29 -0
- package/core/src/storage/src/index.ts +11 -0
- package/core/src/storage/src/move.ts +84 -0
- package/core/src/storage/src/storage.ts +10 -0
- package/core/src/storage/src/visibility.ts +6 -0
- package/core/src/storage/src/zip.ts +55 -0
- package/core/src/storage/tests/example.test.ts +5 -0
- package/core/src/strings/README.md +137 -0
- package/core/src/strings/build.ts +9 -0
- package/core/src/strings/dist/index.js +393 -0
- package/core/src/strings/package.json +81 -0
- package/core/src/strings/src/case.ts +27 -0
- package/core/src/strings/src/helpers.ts +3 -0
- package/core/src/strings/src/index.ts +2 -0
- package/core/src/strings/src/macro.ts +131 -0
- package/core/src/strings/src/pluralize.ts +26 -0
- package/core/src/strings/src/string.ts +5 -0
- package/core/src/strings/src/types.ts +4 -0
- package/core/src/strings/src/utils.ts +117 -0
- package/core/src/strings/tests/example.test.ts +5 -0
- package/core/src/tables/README.md +110 -0
- package/core/src/tables/examples/vue/App.stx +12 -0
- package/core/src/tables/examples/vue/favicon.png +0 -0
- package/core/src/tables/examples/vue/index.html +20 -0
- package/core/src/tables/examples/web/favicon.png +0 -0
- package/core/src/tables/examples/web/index.html +13 -0
- package/core/src/tables/package.json +57 -0
- package/core/src/tables/src/App.stx +23 -0
- package/core/src/tables/src/components/README.md +109 -0
- package/core/src/tables/src/components/Table.stx +342 -0
- package/core/src/tables/src/components/TableBody.stx +32 -0
- package/core/src/tables/src/components/TableFilters.stx +704 -0
- package/core/src/tables/src/components/TableHead.stx +60 -0
- package/core/src/tables/src/components/TablePagination.stx +131 -0
- package/core/src/tables/src/components/TableRow.stx +73 -0
- package/core/src/tables/src/components/TableSearch.stx +39 -0
- package/core/src/tables/src/components/Tooltip.stx +10 -0
- package/core/src/tables/src/components.d.ts +24 -0
- package/core/src/tables/src/config/tables.ts +2 -0
- package/core/src/tables/src/docs/index.md +0 -0
- package/core/src/tables/src/main.ts +4 -0
- package/core/src/tables/tests/example.test.ts +5 -0
- package/core/src/tables/vite.config.ts +84 -0
- package/core/src/testing/README.md +59 -0
- package/core/src/testing/build.ts +8 -0
- package/core/src/testing/dist/index.js +6 -0
- package/core/src/testing/package.json +62 -0
- package/core/src/testing/src/index.ts +3 -0
- package/core/src/tinker/package.json +46 -0
- package/core/src/tunnel/README.md +53 -0
- package/core/src/tunnel/build.ts +8 -0
- package/core/src/tunnel/dist/index.js +10 -0
- package/core/src/tunnel/package.json +57 -0
- package/core/src/tunnel/src/index.ts +6 -0
- package/core/src/tunnel/tests/example.test.ts +5 -0
- package/core/src/types/README.md +59 -0
- package/core/src/types/build.ts +8 -0
- package/core/src/types/dist/index.js +501 -0
- package/core/src/types/package.json +86 -0
- package/core/src/types/src/ai.ts +25 -0
- package/core/src/types/src/analytics.ts +21 -0
- package/core/src/types/src/api.ts +63 -0
- package/core/src/types/src/app.ts +172 -0
- package/core/src/types/src/binary.ts +12 -0
- package/core/src/types/src/cache.ts +98 -0
- package/core/src/types/src/cdn.ts +17 -0
- package/core/src/types/src/chat.ts +5 -0
- package/core/src/types/src/cli.ts +305 -0
- package/core/src/types/src/cloud.ts +82 -0
- package/core/src/types/src/components.ts +64 -0
- package/core/src/types/src/configure.ts +6 -0
- package/core/src/types/src/cron-jobs.ts +44 -0
- package/core/src/types/src/database.ts +45 -0
- package/core/src/types/src/dependencies.ts +69 -0
- package/core/src/types/src/deploy.ts +13 -0
- package/core/src/types/src/dns.ts +186 -0
- package/core/src/types/src/docs.ts +22 -0
- package/core/src/types/src/email.ts +16 -0
- package/core/src/types/src/env.ts +1 -0
- package/core/src/types/src/errors.ts +11 -0
- package/core/src/types/src/events.ts +30 -0
- package/core/src/types/src/file-systems.ts +70 -0
- package/core/src/types/src/git.ts +133 -0
- package/core/src/types/src/hashing.ts +131 -0
- package/core/src/types/src/helpers.ts +11 -0
- package/core/src/types/src/index.ts +58 -0
- package/core/src/types/src/layout.ts +8 -0
- package/core/src/types/src/library.ts +154 -0
- package/core/src/types/src/model.ts +72 -0
- package/core/src/types/src/money.ts +3 -0
- package/core/src/types/src/notifications.ts +147 -0
- package/core/src/types/src/payments.ts +65 -0
- package/core/src/types/src/push.ts +36 -0
- package/core/src/types/src/queue.ts +36 -0
- package/core/src/types/src/router.ts +70 -0
- package/core/src/types/src/scheduler.ts +1 -0
- package/core/src/types/src/search-engine.ts +136 -0
- package/core/src/types/src/security.ts +23 -0
- package/core/src/types/src/services.ts +44 -0
- package/core/src/types/src/sms.ts +5 -0
- package/core/src/types/src/ssg.ts +3 -0
- package/core/src/types/src/stacks.ts +236 -0
- package/core/src/types/src/storage.ts +13 -0
- package/core/src/types/src/team.ts +8 -0
- package/core/src/types/src/ui.ts +197 -0
- package/core/src/types/src/utils.ts +47 -0
- package/core/src/ui/README.md +66 -0
- package/core/src/ui/build.ts +8 -0
- package/core/src/ui/dist/components.js +68 -0
- package/core/src/ui/dist/index.js +69 -0
- package/core/src/ui/package.json +91 -0
- package/core/src/ui/src/components/autocomplete.ts +0 -0
- package/core/src/ui/src/components/disclosure.ts +5 -0
- package/core/src/ui/src/components/menu.ts +1 -0
- package/core/src/ui/src/components/modal.ts +6 -0
- package/core/src/ui/src/components/popover.ts +1 -0
- package/core/src/ui/src/components/radio-group.ts +5 -0
- package/core/src/ui/src/components/select.ts +6 -0
- package/core/src/ui/src/components/tabs.ts +1 -0
- package/core/src/ui/src/components/toggle.ts +1 -0
- package/core/src/ui/src/components/transition.ts +1 -0
- package/core/src/ui/src/components.ts +10 -0
- package/core/src/ui/src/index.ts +15 -0
- package/core/src/ui/src/uno.config.ts +64 -0
- package/core/src/ui/tests/example.test.ts +5 -0
- package/core/src/utils/build.ts +8 -0
- package/core/src/utils/dist/index.js +1276 -0
- package/core/src/utils/package.json +110 -0
- package/core/src/utils/scripts/export-size.ts +94 -0
- package/core/src/utils/src/base.ts +12 -0
- package/core/src/utils/src/clean.ts +17 -0
- package/core/src/utils/src/config.ts +25 -0
- package/core/src/utils/src/delete.ts +1 -0
- package/core/src/utils/src/equal.ts +27 -0
- package/core/src/utils/src/export-size.ts +1 -0
- package/core/src/utils/src/git.ts +11 -0
- package/core/src/utils/src/glob.ts +1 -0
- package/core/src/utils/src/hash.ts +17 -0
- package/core/src/utils/src/helpers.ts +187 -0
- package/core/src/utils/src/index.ts +22 -0
- package/core/src/utils/src/macroable.ts +1 -0
- package/core/src/utils/src/math.ts +30 -0
- package/core/src/utils/src/promise.ts +117 -0
- package/core/src/utils/src/regex.ts +2 -0
- package/core/src/utils/src/sleep.ts +60 -0
- package/core/src/utils/src/throttle.ts +44 -0
- package/core/src/utils/src/vendors.ts +258 -0
- package/core/src/utils/src/versions.ts +6 -0
- package/core/src/utils/tests/example.test.ts +5 -0
- package/core/src/validation/README.md +53 -0
- package/core/src/validation/build.ts +5 -0
- package/core/src/validation/dist/index.js +187 -0
- package/core/src/validation/package.json +63 -0
- package/core/src/validation/src/is.ts +111 -0
- package/core/src/validation/src/rules.ts +126 -0
- package/core/src/validation/src/types/index.ts +7 -0
- package/core/src/validation/src/types/money.ts +17 -0
- package/core/src/validation/src/validate.ts +33 -0
- package/core/src/validation/tests/example.test.ts +5 -0
- package/core/src/vite/README.md +59 -0
- package/core/src/vite/build.ts +9 -0
- package/core/src/vite/dist/index.js +649 -0
- package/core/src/vite/package.json +122 -0
- package/core/src/vite/src/api.ts +19 -0
- package/core/src/vite/src/components.ts +79 -0
- package/core/src/vite/src/desktop.ts +59 -0
- package/core/src/vite/src/example-vue.ts +27 -0
- package/core/src/vite/src/example-wc.ts +27 -0
- package/core/src/vite/src/functions.ts +55 -0
- package/core/src/vite/src/index.ts +20 -0
- package/core/src/vite/src/plugin/auto-imports.ts +40 -0
- package/core/src/vite/src/plugin/components.ts +18 -0
- package/core/src/vite/src/plugin/css-engine.ts +16 -0
- package/core/src/vite/src/plugin/devtools.ts +1 -0
- package/core/src/vite/src/plugin/docs.ts +16 -0
- package/core/src/vite/src/plugin/fonts.ts +6 -0
- package/core/src/vite/src/plugin/i18n.ts +13 -0
- package/core/src/vite/src/plugin/index.ts +21 -0
- package/core/src/vite/src/plugin/inspect.ts +6 -0
- package/core/src/vite/src/plugin/layouts.ts +21 -0
- package/core/src/vite/src/plugin/markdown.ts +26 -0
- package/core/src/vite/src/plugin/pages.ts +34 -0
- package/core/src/vite/src/plugin/presets.ts +17 -0
- package/core/src/vite/src/plugin/pwa.ts +33 -0
- package/core/src/vite/src/plugin/router.ts +15 -0
- package/core/src/vite/src/plugin/stacks.ts +149 -0
- package/core/src/vite/src/plugin/ui-engine.ts +19 -0
- package/core/src/vite/src/stacks.ts +12 -0
- package/core/src/vite/src/views.ts +86 -0
- package/core/src/vite/src/web-components.ts +67 -0
- package/core/src/vite/tests/example.test.ts +5 -0
- package/core/src/vite-plugin-vue-layouts/README.md +59 -0
- package/core/src/vite-plugin-vue-layouts/build.ts +8 -0
- package/core/src/vite-plugin-vue-layouts/client.d.ts +5 -0
- package/core/src/vite-plugin-vue-layouts/dist/index.js +271 -0
- package/core/src/vite-plugin-vue-layouts/package.json +64 -0
- package/core/src/vite-plugin-vue-layouts/src/RouteLayout.ts +26 -0
- package/core/src/vite-plugin-vue-layouts/src/clientSide.ts +99 -0
- package/core/src/vite-plugin-vue-layouts/src/files.ts +24 -0
- package/core/src/vite-plugin-vue-layouts/src/importCode.ts +32 -0
- package/core/src/vite-plugin-vue-layouts/src/index.ts +150 -0
- package/core/src/vite-plugin-vue-layouts/src/types.ts +53 -0
- package/core/src/vite-plugin-vue-layouts/src/utils.ts +15 -0
- package/core/src/vite-plugin-vue-layouts/tests/example.test.ts +5 -0
- package/core/src/whois/README.md +55 -0
- package/core/src/whois/build.ts +8 -0
- package/core/src/whois/dist/index.js +601 -0
- package/core/src/whois/package.json +60 -0
- package/core/src/whois/src/index.ts +497 -0
- package/core/src/whois/src/parameters.ts +4 -0
- package/core/src/whois/src/servers.ts +318 -0
- package/core/src/whois/src/test.ts +5 -0
- package/core/src/whois/tests/example.test.ts +5 -0
- package/core/src/x-ray/README.md +55 -0
- package/core/src/x-ray/package.json +53 -0
- package/core/src/x-ray/src/client.ts +14 -0
- package/core/src/x-ray/src/desktop/api/nitro.config.ts +19 -0
- package/core/src/x-ray/src/desktop/api/storage/index.ts +7 -0
- package/core/src/x-ray/src/desktop/app.stx +377 -0
- package/core/src/x-ray/src/desktop/functions/http.ts +26 -0
- package/core/src/x-ray/src/desktop/main.ts +14 -0
- package/core/src/x-ray/src/desktop/plugins/unified/unified-styles.scss +0 -0
- package/core/src/x-ray/src/desktop/styles/app.scss +0 -0
- package/core/src/x-ray/src/http.ts +26 -0
- package/core/src/x-ray/src/index.ts +42 -0
- package/core/src/x-ray/tests/example.test.ts +5 -0
- package/core/tsconfig.json +73 -0
- package/core/web-types.json +67 -0
- package/ide/dictionary.txt +306 -0
- package/ide/jetbrains/.idea/jsLinters/eslint.xml +1 -1
- package/ide/jetbrains/.idea/stacks.iml +56 -56
- package/ide/jetbrains/options/nodejs.xml +3 -3
- package/ide/vscode/.vscode/settings.json +55 -51
- package/ide/vscode/LICENSE.md +1 -1
- package/ide/vscode/README.md +1 -2
- package/ide/vscode/package.json +10 -9
- package/package.json +477 -201
- package/stubs/.gitkeep +0 -0
- package/stubs/TODO.md +18 -0
- package/vcs/github/CODE_OF_CONDUCT.md +1 -1
- package/vcs/github/CONTRIBUTING.md +6 -8
- package/vcs/github/EXPLANATIONS.md +2 -2
- package/vcs/github/ISSUE_TEMPLATE/bug_report.yml +1 -14
- package/vcs/github/ISSUE_TEMPLATE/config.yml +1 -1
- package/vcs/github/SECURITY.md +1 -1
- package/vcs/github/workflows/README.md +1 -1
- package/vcs/github/workflows/ci.yml +26 -47
- package/vcs/github/workflows/export-size.yml +5 -14
- package/vcs/github/workflows/labeler.yml +13 -0
- package/vcs/github/workflows/release.yml +21 -21
- package/.gitignore +0 -18
- package/README.md +0 -416
- package/api/nitro.config.ts +0 -17
- package/api/package.json +0 -43
- package/api/routes/index.ts +0 -1
- package/art/logo-dark.svg +0 -11
- package/art/logo.svg +0 -11
- package/auto-imports.d.ts +0 -2572
- package/components.d.ts +0 -19
- package/core/actions/README.md +0 -58
- package/core/actions/build.config.ts +0 -187
- package/core/actions/package.json +0 -276
- package/core/actions/src/add.ts +0 -32
- package/core/actions/src/build/component-libs.ts +0 -5
- package/core/actions/src/build/core.ts +0 -6
- package/core/actions/src/build/stacks.ts +0 -9
- package/core/actions/src/build.ts +0 -93
- package/core/actions/src/bump.ts +0 -7
- package/core/actions/src/changelog.ts +0 -7
- package/core/actions/src/clean.ts +0 -12
- package/core/actions/src/commit.ts +0 -19
- package/core/actions/src/copy-types.ts +0 -22
- package/core/actions/src/deploy/domains.ts +0 -8
- package/core/actions/src/deploy.ts +0 -8
- package/core/actions/src/dev/components.ts +0 -5
- package/core/actions/src/dev/docs.ts +0 -5
- package/core/actions/src/dev/index.ts +0 -25
- package/core/actions/src/examples.ts +0 -48
- package/core/actions/src/fresh.ts +0 -7
- package/core/actions/src/generate/component-meta.ts +0 -15
- package/core/actions/src/generate/ide-helpers.ts +0 -20
- package/core/actions/src/generate/index.ts +0 -134
- package/core/actions/src/generate/lib-entries.ts +0 -17
- package/core/actions/src/generate/settings.ts +0 -4
- package/core/actions/src/generate/vscode-custom-data.ts +0 -16
- package/core/actions/src/generate/vue-compat.ts +0 -10
- package/core/actions/src/helpers/component-meta.ts +0 -93
- package/core/actions/src/helpers/index.ts +0 -6
- package/core/actions/src/helpers/lib-entries.ts +0 -138
- package/core/actions/src/helpers/package-json.ts +0 -96
- package/core/actions/src/helpers/utils.ts +0 -76
- package/core/actions/src/helpers/vscode-custom-data.ts +0 -28
- package/core/actions/src/helpers/vue-compat.ts +0 -17
- package/core/actions/src/index.ts +0 -1
- package/core/actions/src/key-generate.ts +0 -10
- package/core/actions/src/lint/fix.ts +0 -5
- package/core/actions/src/lint/index.ts +0 -17
- package/core/actions/src/make.ts +0 -328
- package/core/actions/src/migrate.ts +0 -3
- package/core/actions/src/preinstall.ts +0 -27
- package/core/actions/src/prepublish.ts +0 -16
- package/core/actions/src/release.ts +0 -15
- package/core/actions/src/seed.ts +0 -3
- package/core/actions/src/test/coverage.ts +0 -5
- package/core/actions/src/test/feature.ts +0 -5
- package/core/actions/src/test/ui.ts +0 -5
- package/core/actions/src/test/unit.ts +0 -5
- package/core/actions/src/test.ts +0 -5
- package/core/actions/src/tinker.ts +0 -10
- package/core/actions/src/typecheck.ts +0 -5
- package/core/actions/src/types.ts +0 -23
- package/core/actions/src/upgrade/framework.ts +0 -29
- package/core/actions/src/upgrade/index.ts +0 -25
- package/core/actions/src/upgrade/node.ts +0 -4
- package/core/actions/src/upgrade/package-manager.ts +0 -4
- package/core/actions/src/upgrade.ts +0 -75
- package/core/actions/tests/example.test.ts +0 -7
- package/core/ai/README.md +0 -62
- package/core/ai/build.config.ts +0 -13
- package/core/ai/package.json +0 -54
- package/core/ai/src/drivers/openai.ts +0 -1
- package/core/ai/tests/example.test.ts +0 -7
- package/core/alias/README.md +0 -62
- package/core/alias/build.config.ts +0 -13
- package/core/alias/package.json +0 -51
- package/core/alias/src/index.ts +0 -108
- package/core/alias/tests/example.test.ts +0 -7
- package/core/analytics/README.md +0 -62
- package/core/analytics/build.config.ts +0 -13
- package/core/analytics/package.json +0 -64
- package/core/analytics/src/drivers/fathom.ts +0 -1
- package/core/analytics/tests/example.test.ts +0 -7
- package/core/arrays/README.md +0 -59
- package/core/arrays/build.config.ts +0 -12
- package/core/arrays/package.json +0 -60
- package/core/arrays/src/contains.ts +0 -23
- package/core/arrays/src/helpers.ts +0 -206
- package/core/arrays/src/index.ts +0 -4
- package/core/arrays/src/macro.ts +0 -135
- package/core/arrays/src/math.ts +0 -19
- package/core/arrays/tests/example.test.ts +0 -7
- package/core/auth/README.md +0 -59
- package/core/auth/build.config.ts +0 -12
- package/core/auth/package.json +0 -48
- package/core/auth/tests/example.test.ts +0 -7
- package/core/buddy/README.md +0 -416
- package/core/buddy/art/social.png +0 -0
- package/core/buddy/build.config.ts +0 -14
- package/core/buddy/package.json +0 -128
- package/core/buddy/src/cli.ts +0 -65
- package/core/buddy/src/commands/add.ts +0 -62
- package/core/buddy/src/commands/build.ts +0 -149
- package/core/buddy/src/commands/changelog.ts +0 -31
- package/core/buddy/src/commands/clean.ts +0 -29
- package/core/buddy/src/commands/commit.ts +0 -18
- package/core/buddy/src/commands/create.ts +0 -126
- package/core/buddy/src/commands/deploy.ts +0 -29
- package/core/buddy/src/commands/dev.ts +0 -142
- package/core/buddy/src/commands/example.ts +0 -59
- package/core/buddy/src/commands/fresh.ts +0 -29
- package/core/buddy/src/commands/generate.ts +0 -118
- package/core/buddy/src/commands/index.ts +0 -27
- package/core/buddy/src/commands/inspire.ts +0 -24
- package/core/buddy/src/commands/key.ts +0 -28
- package/core/buddy/src/commands/lint.ts +0 -45
- package/core/buddy/src/commands/make.ts +0 -257
- package/core/buddy/src/commands/migrate.ts +0 -31
- package/core/buddy/src/commands/onboarding.ts +0 -22
- package/core/buddy/src/commands/preinstall.ts +0 -18
- package/core/buddy/src/commands/prepublish.ts +0 -19
- package/core/buddy/src/commands/release.ts +0 -28
- package/core/buddy/src/commands/seed.ts +0 -31
- package/core/buddy/src/commands/setting.ts +0 -26
- package/core/buddy/src/commands/setup.ts +0 -26
- package/core/buddy/src/commands/test.ts +0 -118
- package/core/buddy/src/commands/tinker.ts +0 -29
- package/core/buddy/src/commands/types.ts +0 -26
- package/core/buddy/src/commands/upgrade.ts +0 -134
- package/core/buddy/src/commands/version.ts +0 -28
- package/core/build/README.md +0 -59
- package/core/build/build.config.ts +0 -27
- package/core/build/package.json +0 -77
- package/core/build/src/desktop.ts +0 -152
- package/core/build/src/example-vue.ts +0 -25
- package/core/build/src/example-wc.ts +0 -25
- package/core/build/src/functions.ts +0 -54
- package/core/build/src/index.ts +0 -7
- package/core/build/src/stacks.ts +0 -200
- package/core/build/src/views.ts +0 -50
- package/core/build/src/vue-components.ts +0 -137
- package/core/build/src/web-components.ts +0 -62
- package/core/build/tests/example.test.ts +0 -7
- package/core/build/web-types.ts +0 -14
- package/core/cache/README.md +0 -59
- package/core/cache/build.config.ts +0 -15
- package/core/cache/package.json +0 -77
- package/core/cache/src/drivers/memcached.ts +0 -21
- package/core/cache/src/drivers/redis.ts +0 -44
- package/core/cache/src/drivers/upstash.ts +0 -2
- package/core/cache/src/index.ts +0 -4
- package/core/cache/tests/DynamoDB.test.ts +0 -135
- package/core/cache/tests/Memcached.test.ts +0 -52
- package/core/cache/tests/Redis.test.ts +0 -82
- package/core/cache/vite.config.ts +0 -7
- package/core/chat/README.md +0 -83
- package/core/chat/build.config.ts +0 -13
- package/core/chat/package.json +0 -60
- package/core/chat/tests/example.test.ts +0 -7
- package/core/cli/README.md +0 -129
- package/core/cli/build.config.ts +0 -12
- package/core/cli/package.json +0 -71
- package/core/cli/src/actions/install.ts +0 -40
- package/core/cli/src/command.ts +0 -2
- package/core/cli/src/console.ts +0 -78
- package/core/cli/src/helpers.ts +0 -74
- package/core/cli/src/index.ts +0 -10
- package/core/cli/src/parse.ts +0 -99
- package/core/cli/src/run.ts +0 -100
- package/core/cli/src/utilities.ts +0 -1
- package/core/cli/tests/example.test.ts +0 -7
- package/core/cloud/README.md +0 -59
- package/core/cloud/build.config.ts +0 -12
- package/core/cloud/netlify.toml +0 -18
- package/core/cloud/package.json +0 -66
- package/core/cloud/src/aws/index.ts +0 -9
- package/core/cloud/src/aws/logger.ts +0 -8
- package/core/cloud/src/aws/metrics.ts +0 -8
- package/core/cloud/src/aws/stack.ts +0 -12
- package/core/cloud/src/aws/tracer.ts +0 -3
- package/core/cloud/src/index.ts +0 -1
- package/core/cloud/src/runtime/nodejs/bootstrap.ts +0 -16
- package/core/cloud/src/runtime/nodejs/build.sh +0 -1
- package/core/cloud/tests/example.test.ts +0 -7
- package/core/collections/README.md +0 -71
- package/core/collections/build.config.ts +0 -11
- package/core/collections/package.json +0 -55
- package/core/collections/tests/example.test.ts +0 -7
- package/core/config/README.md +0 -71
- package/core/config/build.config.ts +0 -46
- package/core/config/package.json +0 -54
- package/core/config/src/defaults.ts +0 -17
- package/core/config/src/index.ts +0 -4
- package/core/config/src/stacks.ts +0 -48
- package/core/config/tests/example.test.ts +0 -7
- package/core/database/README.md +0 -59
- package/core/database/build.config.ts +0 -16
- package/core/database/package.json +0 -64
- package/core/database/src/factory/index.ts +0 -24
- package/core/database/src/index.ts +0 -3
- package/core/database/src/migrations/index.ts +0 -148
- package/core/database/src/seeder/index.ts +0 -79
- package/core/database/tests/example.test.ts +0 -7
- package/core/datetime/README.md +0 -66
- package/core/datetime/build.config.ts +0 -12
- package/core/datetime/package.json +0 -54
- package/core/datetime/tests/example.test.ts +0 -7
- package/core/desktop/README.md +0 -49
- package/core/desktop/build.config.ts +0 -16
- package/core/desktop/package.json +0 -68
- package/core/desktop/src/drivers/tauri/index.ts +0 -1
- package/core/desktop/src/index.ts +0 -1
- package/core/desktop/tests/example.test.ts +0 -7
- package/core/development/README.md +0 -27
- package/core/development/build.config.ts +0 -25
- package/core/development/package.json +0 -68
- package/core/development/src/index.ts +0 -4
- package/core/development/tests/example.test.ts +0 -7
- package/core/dns/README.md +0 -56
- package/core/dns/build.config.ts +0 -18
- package/core/dns/package.json +0 -55
- package/core/dns/src/index.ts +0 -18
- package/core/dns/tests/example.test.ts +0 -7
- package/core/docs/README.md +0 -59
- package/core/docs/build.config.ts +0 -15
- package/core/docs/package.json +0 -54
- package/core/docs/src/index.ts +0 -5
- package/core/docs/tests/example.test.ts +0 -7
- package/core/email/README.md +0 -155
- package/core/email/build.config.ts +0 -12
- package/core/email/package.json +0 -82
- package/core/email/src/actions/send.ts +0 -38
- package/core/email/src/drivers/emailjs.ts +0 -23
- package/core/email/src/drivers/mailgun.ts +0 -21
- package/core/email/src/drivers/mailjet.ts +0 -21
- package/core/email/src/drivers/mandrill.ts +0 -19
- package/core/email/src/drivers/netcore.ts +0 -19
- package/core/email/src/drivers/nodemailer.ts +0 -23
- package/core/email/src/drivers/postmark.ts +0 -19
- package/core/email/src/drivers/sendgrid.ts +0 -20
- package/core/email/src/drivers/ses.ts +0 -22
- package/core/email/src/index.ts +0 -9
- package/core/email/tests/example.test.ts +0 -7
- package/core/error-handling/README.md +0 -131
- package/core/error-handling/build.config.ts +0 -19
- package/core/error-handling/package.json +0 -58
- package/core/error-handling/src/index.ts +0 -58
- package/core/error-handling/tests/example.test.ts +0 -7
- package/core/events/README.md +0 -76
- package/core/events/build.config.ts +0 -12
- package/core/events/package.json +0 -53
- package/core/events/src/index.ts +0 -38
- package/core/events/tests/example.test.ts +0 -7
- package/core/faker/README.md +0 -62
- package/core/faker/build.config.ts +0 -17
- package/core/faker/package.json +0 -55
- package/core/faker/tests/example.test.ts +0 -7
- package/core/git/README.md +0 -69
- package/core/git/build.config.ts +0 -17
- package/core/git/package.json +0 -58
- package/core/git/src/index.ts +0 -1
- package/core/git/tests/example.test.ts +0 -7
- package/core/health/README.md +0 -56
- package/core/health/build.config.ts +0 -17
- package/core/health/package.json +0 -53
- package/core/health/src/drivers/ohdear.ts +0 -1
- package/core/health/src/index.ts +0 -1
- package/core/health/src/notifications/index.ts +0 -1
- package/core/health/tests/example.test.ts +0 -7
- package/core/lint/README.md +0 -73
- package/core/lint/build.config.ts +0 -17
- package/core/lint/package.json +0 -58
- package/core/lint/tests/example.test.ts +0 -7
- package/core/logging/README.md +0 -58
- package/core/logging/build.config.ts +0 -26
- package/core/logging/package.json +0 -61
- package/core/logging/src/index.ts +0 -11
- package/core/logging/tests/example.test.ts +0 -7
- package/core/modules/README.md +0 -51
- package/core/modules/build.config.ts +0 -18
- package/core/modules/package.json +0 -61
- package/core/modules/src/i18n.ts +0 -23
- package/core/modules/src/nprogress.ts +0 -14
- package/core/modules/src/pwa.ts +0 -12
- package/core/modules/tests/example.test.ts +0 -7
- package/core/notifications/README.md +0 -272
- package/core/notifications/build.config.ts +0 -16
- package/core/notifications/package.json +0 -93
- package/core/notifications/src/index.ts +0 -51
- package/core/notifications/src/tailwind.config.ts +0 -39
- package/core/notifications/src/utils/config.ts +0 -5
- package/core/notifications/tests/chat/Slack.test.ts +0 -35
- package/core/notifications/tests/email/Mailgun.test.ts +0 -41
- package/core/notifications/tests/email/Sendgrid.test.ts +0 -41
- package/core/notifications/tests/sms/Twilio.test.ts +0 -38
- package/core/objects/README.md +0 -71
- package/core/objects/build.config.ts +0 -19
- package/core/objects/package.json +0 -55
- package/core/objects/src/index.ts +0 -147
- package/core/objects/tests/example.test.ts +0 -7
- package/core/orm/README.md +0 -48
- package/core/orm/build.config.ts +0 -12
- package/core/orm/package.json +0 -52
- package/core/orm/src/index.ts +0 -43
- package/core/orm/tests/example.test.ts +0 -7
- package/core/pages/build.config.ts +0 -12
- package/core/pages/package.json +0 -57
- package/core/pages/src/index.ts +0 -39
- package/core/pages/tests/example.test.ts +0 -7
- package/core/path/README.md +0 -64
- package/core/path/build.config.ts +0 -16
- package/core/path/package.json +0 -55
- package/core/path/src/index.ts +0 -486
- package/core/path/tests/example.test.ts +0 -7
- package/core/payments/README.md +0 -64
- package/core/payments/build.config.ts +0 -12
- package/core/payments/package.json +0 -58
- package/core/payments/src/drivers/stripe.ts +0 -137
- package/core/payments/tests/example.test.ts +0 -7
- package/core/push/README.md +0 -71
- package/core/push/build.config.ts +0 -12
- package/core/push/package.json +0 -56
- package/core/push/src/drivers/expo.ts +0 -21
- package/core/push/src/drivers/fcm.ts +0 -21
- package/core/push/src/index.ts +0 -2
- package/core/push/tests/example.test.ts +0 -7
- package/core/query-builder/README.md +0 -48
- package/core/query-builder/build.config.ts +0 -12
- package/core/query-builder/package.json +0 -56
- package/core/query-builder/src/kysely.ts +0 -37
- package/core/query-builder/tests/example.test.ts +0 -7
- package/core/queue/README.md +0 -59
- package/core/queue/build.config.ts +0 -12
- package/core/queue/package.json +0 -53
- package/core/queue/src/index.ts +0 -1
- package/core/queue/tests/example.test.ts +0 -7
- package/core/realtime/README.md +0 -59
- package/core/realtime/build.config.ts +0 -12
- package/core/realtime/package.json +0 -50
- package/core/realtime/src/drivers/index.ts +0 -3
- package/core/realtime/src/index.ts +0 -5
- package/core/realtime/tests/example.test.ts +0 -7
- package/core/repl/README.md +0 -53
- package/core/repl/build.config.ts +0 -12
- package/core/repl/package.json +0 -56
- package/core/repl/tests/example.test.ts +0 -7
- package/core/router/README.md +0 -59
- package/core/router/build.config.ts +0 -17
- package/core/router/package.json +0 -53
- package/core/router/src/index.ts +0 -120
- package/core/router/tests/example.test.ts +0 -7
- package/core/scheduler/README.md +0 -137
- package/core/scheduler/build.config.ts +0 -12
- package/core/scheduler/package.json +0 -51
- package/core/scheduler/src/index.ts +0 -120
- package/core/scheduler/tests/example.test.ts +0 -7
- package/core/search-engine/README.md +0 -66
- package/core/search-engine/build.config.ts +0 -20
- package/core/search-engine/package.json +0 -65
- package/core/search-engine/src/drivers/meilisearch.ts +0 -39
- package/core/search-engine/src/helpers.ts +0 -134
- package/core/search-engine/src/index.ts +0 -67
- package/core/search-engine/tests/example.test.ts +0 -7
- package/core/security/README.md +0 -66
- package/core/security/build.config.ts +0 -21
- package/core/security/package.json +0 -57
- package/core/security/src/crypt.ts +0 -23
- package/core/security/src/hash.ts +0 -52
- package/core/security/src/key.ts +0 -11
- package/core/security/tests/example.test.ts +0 -7
- package/core/server/README.md +0 -51
- package/core/server/build.config.ts +0 -11
- package/core/server/package.json +0 -59
- package/core/server/src/config.ts +0 -7
- package/core/server/src/index.ts +0 -2
- package/core/server/src/nitro.config.ts +0 -7
- package/core/server/tests/example.test.ts +0 -7
- package/core/signals/README.md +0 -105
- package/core/signals/build.config.ts +0 -12
- package/core/signals/package.json +0 -55
- package/core/signals/tests/example.test.ts +0 -7
- package/core/slug/README.md +0 -59
- package/core/slug/build.config.ts +0 -12
- package/core/slug/package.json +0 -55
- package/core/slug/src/index.ts +0 -57
- package/core/slug/tests/example.test.ts +0 -7
- package/core/sms/README.md +0 -137
- package/core/sms/build.config.ts +0 -17
- package/core/sms/package.json +0 -72
- package/core/sms/src/index.ts +0 -8
- package/core/sms/tests/example.test.ts +0 -7
- package/core/storage/README.md +0 -74
- package/core/storage/build.config.ts +0 -12
- package/core/storage/package.json +0 -61
- package/core/storage/src/index.ts +0 -208
- package/core/storage/tests/example.test.ts +0 -7
- package/core/strings/README.md +0 -77
- package/core/strings/build.config.ts +0 -12
- package/core/strings/package.json +0 -78
- package/core/strings/src/case.ts +0 -27
- package/core/strings/src/index.ts +0 -4
- package/core/strings/src/macro.ts +0 -139
- package/core/strings/src/pluralize.ts +0 -5
- package/core/strings/src/utils.ts +0 -120
- package/core/strings/tests/example.test.ts +0 -7
- package/core/testing/README.md +0 -59
- package/core/testing/build.config.ts +0 -17
- package/core/testing/package.json +0 -62
- package/core/testing/src/index.ts +0 -3
- package/core/tinker/README.md +0 -61
- package/core/tinker/build.config.ts +0 -13
- package/core/tinker/package.json +0 -58
- package/core/tinker/src/index.ts +0 -1
- package/core/tinker/src/tinker.ts +0 -2
- package/core/types/README.md +0 -59
- package/core/types/build.config.ts +0 -37
- package/core/types/package.json +0 -88
- package/core/types/src/app.ts +0 -119
- package/core/types/src/cache.ts +0 -78
- package/core/types/src/cdn.ts +0 -15
- package/core/types/src/cli.ts +0 -303
- package/core/types/src/components.ts +0 -64
- package/core/types/src/cron-jobs.ts +0 -38
- package/core/types/src/database.ts +0 -49
- package/core/types/src/debug.ts +0 -6
- package/core/types/src/deploy.ts +0 -8
- package/core/types/src/dns.ts +0 -49
- package/core/types/src/docs.ts +0 -5
- package/core/types/src/errors.ts +0 -24
- package/core/types/src/events.ts +0 -30
- package/core/types/src/fs.ts +0 -30
- package/core/types/src/git.ts +0 -131
- package/core/types/src/hashing.ts +0 -122
- package/core/types/src/index.ts +0 -40
- package/core/types/src/layout.ts +0 -8
- package/core/types/src/library.ts +0 -146
- package/core/types/src/model.ts +0 -59
- package/core/types/src/money.ts +0 -3
- package/core/types/src/notifications.ts +0 -205
- package/core/types/src/payments.ts +0 -63
- package/core/types/src/queue.ts +0 -34
- package/core/types/src/router.ts +0 -52
- package/core/types/src/search-engine.ts +0 -166
- package/core/types/src/ssg.ts +0 -3
- package/core/types/src/stacks.ts +0 -192
- package/core/types/src/ui.ts +0 -193
- package/core/types/src/utils.ts +0 -43
- package/core/ui/README.md +0 -66
- package/core/ui/build.config.ts +0 -13
- package/core/ui/package.json +0 -69
- package/core/ui/src/index.ts +0 -20
- package/core/ui/src/unocss.config.ts +0 -47
- package/core/ui/src/unocss.ts +0 -45
- package/core/ui/tests/example.test.ts +0 -7
- package/core/utils/build.config.ts +0 -36
- package/core/utils/package.json +0 -102
- package/core/utils/src/base.ts +0 -25
- package/core/utils/src/config.ts +0 -135
- package/core/utils/src/delete.ts +0 -1
- package/core/utils/src/equal.ts +0 -27
- package/core/utils/src/helpers.ts +0 -169
- package/core/utils/src/index.ts +0 -15
- package/core/utils/src/math.ts +0 -30
- package/core/utils/src/promise.ts +0 -124
- package/core/utils/src/throttle.ts +0 -42
- package/core/utils/src/vendors.ts +0 -222
- package/core/utils/src/versions.ts +0 -1
- package/core/utils/tests/example.test.ts +0 -7
- package/core/validation/README.md +0 -53
- package/core/validation/build.config.ts +0 -21
- package/core/validation/package.json +0 -56
- package/core/validation/src/is.ts +0 -110
- package/core/validation/src/rules.ts +0 -126
- package/core/validation/src/types/env.ts +0 -147
- package/core/validation/src/types/index.ts +0 -2
- package/core/validation/src/types/money.ts +0 -17
- package/core/validation/src/validate.ts +0 -18
- package/core/validation/tests/example.test.ts +0 -7
- package/core/vite-plugin/README.md +0 -59
- package/core/vite-plugin/build.config.ts +0 -17
- package/core/vite-plugin/package.json +0 -51
- package/core/vite-plugin/src/index.ts +0 -23
- package/core/vite-plugin/tests/example.test.ts +0 -7
- package/dictionary.txt +0 -228
- package/docs/.vitepress/config.ts +0 -9
- package/docs/README.md +0 -13
- package/docs/package.json +0 -47
- package/env.d.ts +0 -7
- package/ide/jetbrains/.idea/.gitignore +0 -5
- package/libs/components/vue/index.html +0 -13
- package/libs/components/vue/main.ts +0 -19
- package/libs/components/vue/package.json +0 -41
- package/libs/components/web/package.json +0 -41
- package/libs/examples/vue/App.vue +0 -12
- package/libs/examples/vue/favicon.png +0 -0
- package/libs/examples/vue/index.html +0 -20
- package/libs/examples/web/favicon.png +0 -0
- package/libs/examples/web/index.html +0 -13
- package/libs/functions/package.json +0 -41
- package/reset.d.ts +0 -1
- package/scripts/ensure.sh +0 -33
- package/scripts/publish.sh +0 -18
- package/scripts/setup.sh +0 -540
- package/shims.d.ts +0 -17
- package/simple-git-hooks.cjs +0 -5
- package/stacks/dashboard/README.md +0 -74
- package/stacks/dashboard/build.config.ts +0 -15
- package/stacks/dashboard/package.json +0 -47
- package/stacks/dashboard/tests/example.test.ts +0 -7
- package/stacks/tables/README.md +0 -109
- package/stacks/tables/build.config.ts +0 -14
- package/stacks/tables/examples/vue/App.vue +0 -12
- package/stacks/tables/examples/vue/favicon.png +0 -0
- package/stacks/tables/examples/vue/index.html +0 -20
- package/stacks/tables/examples/web/favicon.png +0 -0
- package/stacks/tables/examples/web/index.html +0 -13
- package/stacks/tables/package.json +0 -57
- package/stacks/tables/src/App.vue +0 -23
- package/stacks/tables/src/cli/index.ts +0 -1
- package/stacks/tables/src/components/README.md +0 -110
- package/stacks/tables/src/components/Table.vue +0 -342
- package/stacks/tables/src/components/TableBody.vue +0 -32
- package/stacks/tables/src/components/TableFilters.vue +0 -704
- package/stacks/tables/src/components/TableHead.vue +0 -60
- package/stacks/tables/src/components/TablePagination.vue +0 -131
- package/stacks/tables/src/components/TableRow.vue +0 -73
- package/stacks/tables/src/components/TableSearch.vue +0 -39
- package/stacks/tables/src/components/Tooltip.vue +0 -10
- package/stacks/tables/src/config/tables.ts +0 -1
- package/stacks/tables/src/main.ts +0 -4
- package/stacks/tables/tests/example.test.ts +0 -7
- package/stacks/tables/vite.config.ts +0 -26
- package/stacks/tinker/package.json +0 -49
- package/stacks/tinker/src/index.ts +0 -1
- package/stacks/x-ray/README.md +0 -55
- package/stacks/x-ray/build.config.ts +0 -15
- package/stacks/x-ray/package.json +0 -56
- package/stacks/x-ray/src/client.ts +0 -14
- package/stacks/x-ray/src/desktop/api/nitro.config.ts +0 -19
- package/stacks/x-ray/src/desktop/api/storage/index.ts +0 -7
- package/stacks/x-ray/src/desktop/app.vue +0 -377
- package/stacks/x-ray/src/desktop/functions/http.ts +0 -26
- package/stacks/x-ray/src/desktop/main.ts +0 -14
- package/stacks/x-ray/src/http.ts +0 -26
- package/stacks/x-ray/src/index.ts +0 -42
- package/stacks/x-ray/tests/example.test.ts +0 -7
- package/stacks.d.ts +0 -22
- package/tsconfig.json +0 -159
- package/views/desktop/.gitignore +0 -24
- package/views/desktop/README.md +0 -73
- package/views/desktop/index.html +0 -13
- package/views/desktop/package.json +0 -29
- package/views/desktop/public/favicon.svg +0 -1
- package/views/desktop/src/.gitignore +0 -3
- package/views/desktop/src/Cargo.lock +0 -3916
- package/views/desktop/src/Cargo.toml +0 -28
- package/views/desktop/src/build.rs +0 -3
- package/views/desktop/src/icons/128x128.png +0 -0
- package/views/desktop/src/icons/128x128@2x.png +0 -0
- package/views/desktop/src/icons/32x32.png +0 -0
- package/views/desktop/src/icons/Square107x107Logo.png +0 -0
- package/views/desktop/src/icons/Square142x142Logo.png +0 -0
- package/views/desktop/src/icons/Square150x150Logo.png +0 -0
- package/views/desktop/src/icons/Square284x284Logo.png +0 -0
- package/views/desktop/src/icons/Square30x30Logo.png +0 -0
- package/views/desktop/src/icons/Square310x310Logo.png +0 -0
- package/views/desktop/src/icons/Square44x44Logo.png +0 -0
- package/views/desktop/src/icons/Square71x71Logo.png +0 -0
- package/views/desktop/src/icons/Square89x89Logo.png +0 -0
- package/views/desktop/src/icons/StoreLogo.png +0 -0
- package/views/desktop/src/icons/icon.icns +0 -0
- package/views/desktop/src/icons/icon.ico +0 -0
- package/views/desktop/src/icons/icon.png +0 -0
- package/views/desktop/src/src/main.rs +0 -10
- package/views/desktop/src/tauri.conf.json +0 -73
- package/views/web/App.vue +0 -26
- package/views/web/index.html +0 -23
- package/views/web/main.ts +0 -26
- package/views/web/public/_headers +0 -3
- package/views/web/public/favicon-dark.svg +0 -3
- package/views/web/public/favicon.svg +0 -3
- package/views/web/public/pwa-192x192.png +0 -0
- package/views/web/public/pwa-512x512.png +0 -0
- package/views/web/public/safari-pinned-tab.svg +0 -41
- package/views/web/styles/main.css +0 -29
- package/views/web/styles/markdown.css +0 -28
- package/vitest.config.ts +0 -31
- package/web-types.json +0 -67
- /package/{custom-elements.json → core/custom-elements.json} +0 -0
- /package/core/{actions → src/actions}/src/upgrade/dependencies.ts +0 -0
- /package/{stacks/dashboard/src/index.ts → core/src/ai/src/chatbots.ts} +0 -0
- /package/{stacks/tables/src/docs/index.md → core/src/ai/src/image-generation.ts} +0 -0
- /package/{stacks/x-ray/src/desktop/plugins/unified/unified-styles.scss → core/src/ai/src/personalization.ts} +0 -0
- /package/{stacks/x-ray/src/desktop/styles/app.scss → core/src/ai/src/search.ts} +0 -0
- /package/core/{auth → src/auth}/src/index.ts +0 -0
- /package/core/{buddy → src/buddy}/src/index.ts +0 -0
- /package/core/{build → src/build}/web-types.config.cjs +0 -0
- /package/core/{cache → src/cache}/src/drivers/dynamodb.ts +0 -0
- /package/core/{chat → src/chat}/src/drivers/discord.ts +0 -0
- /package/core/{chat → src/chat}/src/drivers/slack.ts +0 -0
- /package/core/{chat → src/chat}/src/drivers/teams.ts +0 -0
- /package/core/{chat → src/chat}/src/index.ts +0 -0
- /package/core/{cli → src/cli}/src/actions/index.ts +0 -0
- /package/core/{cli → src/cli}/src/spinner.ts +0 -0
- /package/core/{collections → src/collections}/src/index.ts +0 -0
- /package/core/{datetime → src/datetime}/src/index.ts +0 -0
- /package/core/{email → src/email}/src/tailwind.config.ts +0 -0
- /package/core/{email → src/email}/src/utils/config.ts +0 -0
- /package/core/{email → src/email}/src/utils/template.html +0 -0
- /package/core/{faker → src/faker}/src/index.ts +0 -0
- /package/core/{lint → src/lint}/src/index.ts +0 -0
- /package/core/{notifications → src/notifications}/src/drivers/chat.ts +0 -0
- /package/core/{notifications → src/notifications}/src/drivers/email.ts +0 -0
- /package/core/{notifications → src/notifications}/src/drivers/push.ts +0 -0
- /package/core/{notifications → src/notifications}/src/drivers/sms.ts +0 -0
- /package/core/{notifications → src/notifications}/src/utils/template.html +0 -0
- /package/core/{payments → src/payments}/src/index.ts +0 -0
- /package/core/{query-builder → src/query-builder}/src/index.ts +0 -0
- /package/core/{repl → src/repl}/src/index.ts +0 -0
- /package/core/{security → src/security}/src/index.ts +0 -0
- /package/core/{signals → src/signals}/src/index.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/gupshup.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/nexmo.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/plivo.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/sms77.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/sns.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/telnyx.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/termii.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/twilio.ts +0 -0
- /package/core/{strings → src/strings}/src/is.ts +0 -0
- /package/{stacks → core/src}/tables/index.html +0 -0
- /package/core/{ai/src → src/tables/src/commands}/index.ts +0 -0
- /package/{stacks/tables/src/components/Demo.vue → core/src/tables/src/components/Demo.stx} +0 -0
- /package/{stacks/tables/src/components/TableCellActionItems.vue → core/src/tables/src/components/TableCellActionItems.stx} +0 -0
- /package/{stacks → core/src}/tables/src/functions/README.md +0 -0
- /package/{stacks → core/src}/tables/src/functions/dark.ts +0 -0
- /package/{stacks → core/src}/tables/src/functions/index.ts +0 -0
- /package/{stacks → core/src}/tables/src/functions/table.ts +0 -0
- /package/core/{analytics → src/tinker}/src/index.ts +0 -0
- /package/core/{types → src/types}/src/auto-imports.ts +0 -0
- /package/core/{types → src/types}/src/build.ts +0 -0
- /package/core/{types → src/types}/src/exit-code.ts +0 -0
- /package/core/{types → src/types}/src/i18n.ts +0 -0
- /package/core/{types → src/types}/src/inspect.ts +0 -0
- /package/core/{types → src/types}/src/manifest.ts +0 -0
- /package/core/{types → src/types}/src/pages.ts +0 -0
- /package/core/{types → src/types}/src/promise.ts +0 -0
- /package/core/{types → src/types}/src/pwa.ts +0 -0
- /package/core/{types → src/types}/src/reactivity.ts +0 -0
- /package/core/{types → src/types}/src/tables.ts +0 -0
- /package/core/{utils → src/utils}/src/currency.ts +0 -0
- /package/core/{utils → src/utils}/src/debounce.ts +0 -0
- /package/core/{utils → src/utils}/src/function.ts +0 -0
- /package/core/{utils → src/utils}/src/guards.ts +0 -0
- /package/core/{utils → src/utils}/src/p.ts +0 -0
- /package/core/{validation → src/validation}/src/index.ts +0 -0
- /package/{stacks → core/src}/x-ray/index.html +0 -0
- /package/{stacks → core/src}/x-ray/routes/index.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/desktop/api/routes/api/logs.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/desktop/api/routes/api/store-logs.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/desktop/api/src/types.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/desktop/functions/types.ts +0 -0
- /package/{stacks/x-ray/src/desktop/modules/counter/mod.vue → core/src/x-ray/src/desktop/modules/counter/mod.stx} +0 -0
- /package/{stacks/x-ray/src/desktop/modules/fetcher/mod.vue → core/src/x-ray/src/desktop/modules/fetcher/mod.stx} +0 -0
- /package/{stacks → core/src}/x-ray/src/desktop/plugins/unified/unified-app.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/desktop/services/http.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/ray.config.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/types.ts +0 -0
|
@@ -0,0 +1,841 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
// src/middleware.ts
|
|
3
|
+
import fs from "fs";
|
|
4
|
+
import {promisify} from "util";
|
|
5
|
+
|
|
6
|
+
// /Users/chrisbreuer/Code/stacks/storage/framework/core/src/path/src/index.ts
|
|
7
|
+
import process2 from "process";
|
|
8
|
+
|
|
9
|
+
// /Users/chrisbreuer/Code/stacks/node_modules/pathe/dist/shared/pathe.ff20891b.mjs
|
|
10
|
+
var normalizeWindowsPath = function(input = "") {
|
|
11
|
+
if (!input) {
|
|
12
|
+
return input;
|
|
13
|
+
}
|
|
14
|
+
return input.replace(/\\/g, "/").replace(_DRIVE_LETTER_START_RE, (r) => r.toUpperCase());
|
|
15
|
+
};
|
|
16
|
+
var cwd = function() {
|
|
17
|
+
if (typeof process !== "undefined" && typeof process.cwd === "function") {
|
|
18
|
+
return process.cwd().replace(/\\/g, "/");
|
|
19
|
+
}
|
|
20
|
+
return "/";
|
|
21
|
+
};
|
|
22
|
+
var normalizeString = function(path, allowAboveRoot) {
|
|
23
|
+
let res = "";
|
|
24
|
+
let lastSegmentLength = 0;
|
|
25
|
+
let lastSlash = -1;
|
|
26
|
+
let dots = 0;
|
|
27
|
+
let char = null;
|
|
28
|
+
for (let index = 0;index <= path.length; ++index) {
|
|
29
|
+
if (index < path.length) {
|
|
30
|
+
char = path[index];
|
|
31
|
+
} else if (char === "/") {
|
|
32
|
+
break;
|
|
33
|
+
} else {
|
|
34
|
+
char = "/";
|
|
35
|
+
}
|
|
36
|
+
if (char === "/") {
|
|
37
|
+
if (lastSlash === index - 1 || dots === 1)
|
|
38
|
+
;
|
|
39
|
+
else if (dots === 2) {
|
|
40
|
+
if (res.length < 2 || lastSegmentLength !== 2 || res[res.length - 1] !== "." || res[res.length - 2] !== ".") {
|
|
41
|
+
if (res.length > 2) {
|
|
42
|
+
const lastSlashIndex = res.lastIndexOf("/");
|
|
43
|
+
if (lastSlashIndex === -1) {
|
|
44
|
+
res = "";
|
|
45
|
+
lastSegmentLength = 0;
|
|
46
|
+
} else {
|
|
47
|
+
res = res.slice(0, lastSlashIndex);
|
|
48
|
+
lastSegmentLength = res.length - 1 - res.lastIndexOf("/");
|
|
49
|
+
}
|
|
50
|
+
lastSlash = index;
|
|
51
|
+
dots = 0;
|
|
52
|
+
continue;
|
|
53
|
+
} else if (res.length > 0) {
|
|
54
|
+
res = "";
|
|
55
|
+
lastSegmentLength = 0;
|
|
56
|
+
lastSlash = index;
|
|
57
|
+
dots = 0;
|
|
58
|
+
continue;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
if (allowAboveRoot) {
|
|
62
|
+
res += res.length > 0 ? "/.." : "..";
|
|
63
|
+
lastSegmentLength = 2;
|
|
64
|
+
}
|
|
65
|
+
} else {
|
|
66
|
+
if (res.length > 0) {
|
|
67
|
+
res += `/${path.slice(lastSlash + 1, index)}`;
|
|
68
|
+
} else {
|
|
69
|
+
res = path.slice(lastSlash + 1, index);
|
|
70
|
+
}
|
|
71
|
+
lastSegmentLength = index - lastSlash - 1;
|
|
72
|
+
}
|
|
73
|
+
lastSlash = index;
|
|
74
|
+
dots = 0;
|
|
75
|
+
} else if (char === "." && dots !== -1) {
|
|
76
|
+
++dots;
|
|
77
|
+
} else {
|
|
78
|
+
dots = -1;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
return res;
|
|
82
|
+
};
|
|
83
|
+
var _DRIVE_LETTER_START_RE = /^[A-Za-z]:\//;
|
|
84
|
+
var _UNC_REGEX = /^[/\\]{2}/;
|
|
85
|
+
var _IS_ABSOLUTE_RE = /^[/\\](?![/\\])|^[/\\]{2}(?!\.)|^[A-Za-z]:[/\\]/;
|
|
86
|
+
var _DRIVE_LETTER_RE = /^[A-Za-z]:$/;
|
|
87
|
+
var _ROOT_FOLDER_RE = /^\/([A-Za-z]:)?$/;
|
|
88
|
+
var sep = "/";
|
|
89
|
+
var delimiter = ":";
|
|
90
|
+
var normalize = function(path) {
|
|
91
|
+
if (path.length === 0) {
|
|
92
|
+
return ".";
|
|
93
|
+
}
|
|
94
|
+
path = normalizeWindowsPath(path);
|
|
95
|
+
const isUNCPath = path.match(_UNC_REGEX);
|
|
96
|
+
const isPathAbsolute = isAbsolute(path);
|
|
97
|
+
const trailingSeparator = path[path.length - 1] === "/";
|
|
98
|
+
path = normalizeString(path, !isPathAbsolute);
|
|
99
|
+
if (path.length === 0) {
|
|
100
|
+
if (isPathAbsolute) {
|
|
101
|
+
return "/";
|
|
102
|
+
}
|
|
103
|
+
return trailingSeparator ? "./" : ".";
|
|
104
|
+
}
|
|
105
|
+
if (trailingSeparator) {
|
|
106
|
+
path += "/";
|
|
107
|
+
}
|
|
108
|
+
if (_DRIVE_LETTER_RE.test(path)) {
|
|
109
|
+
path += "/";
|
|
110
|
+
}
|
|
111
|
+
if (isUNCPath) {
|
|
112
|
+
if (!isPathAbsolute) {
|
|
113
|
+
return `//./${path}`;
|
|
114
|
+
}
|
|
115
|
+
return `//${path}`;
|
|
116
|
+
}
|
|
117
|
+
return isPathAbsolute && !isAbsolute(path) ? `/${path}` : path;
|
|
118
|
+
};
|
|
119
|
+
var join = function(...arguments_) {
|
|
120
|
+
if (arguments_.length === 0) {
|
|
121
|
+
return ".";
|
|
122
|
+
}
|
|
123
|
+
let joined;
|
|
124
|
+
for (const argument of arguments_) {
|
|
125
|
+
if (argument && argument.length > 0) {
|
|
126
|
+
if (joined === undefined) {
|
|
127
|
+
joined = argument;
|
|
128
|
+
} else {
|
|
129
|
+
joined += `/${argument}`;
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
if (joined === undefined) {
|
|
134
|
+
return ".";
|
|
135
|
+
}
|
|
136
|
+
return normalize(joined.replace(/\/\/+/g, "/"));
|
|
137
|
+
};
|
|
138
|
+
var resolve = function(...arguments_) {
|
|
139
|
+
arguments_ = arguments_.map((argument) => normalizeWindowsPath(argument));
|
|
140
|
+
let resolvedPath = "";
|
|
141
|
+
let resolvedAbsolute = false;
|
|
142
|
+
for (let index = arguments_.length - 1;index >= -1 && !resolvedAbsolute; index--) {
|
|
143
|
+
const path = index >= 0 ? arguments_[index] : cwd();
|
|
144
|
+
if (!path || path.length === 0) {
|
|
145
|
+
continue;
|
|
146
|
+
}
|
|
147
|
+
resolvedPath = `${path}/${resolvedPath}`;
|
|
148
|
+
resolvedAbsolute = isAbsolute(path);
|
|
149
|
+
}
|
|
150
|
+
resolvedPath = normalizeString(resolvedPath, !resolvedAbsolute);
|
|
151
|
+
if (resolvedAbsolute && !isAbsolute(resolvedPath)) {
|
|
152
|
+
return `/${resolvedPath}`;
|
|
153
|
+
}
|
|
154
|
+
return resolvedPath.length > 0 ? resolvedPath : ".";
|
|
155
|
+
};
|
|
156
|
+
var isAbsolute = function(p) {
|
|
157
|
+
return _IS_ABSOLUTE_RE.test(p);
|
|
158
|
+
};
|
|
159
|
+
var toNamespacedPath = function(p) {
|
|
160
|
+
return normalizeWindowsPath(p);
|
|
161
|
+
};
|
|
162
|
+
var _EXTNAME_RE = /.(\.[^./]+)$/;
|
|
163
|
+
var extname = function(p) {
|
|
164
|
+
const match = _EXTNAME_RE.exec(normalizeWindowsPath(p));
|
|
165
|
+
return match && match[1] || "";
|
|
166
|
+
};
|
|
167
|
+
var relative = function(from, to) {
|
|
168
|
+
const _from = resolve(from).replace(_ROOT_FOLDER_RE, "$1").split("/");
|
|
169
|
+
const _to = resolve(to).replace(_ROOT_FOLDER_RE, "$1").split("/");
|
|
170
|
+
if (_to[0][1] === ":" && _from[0][1] === ":" && _from[0] !== _to[0]) {
|
|
171
|
+
return _to.join("/");
|
|
172
|
+
}
|
|
173
|
+
const _fromCopy = [..._from];
|
|
174
|
+
for (const segment of _fromCopy) {
|
|
175
|
+
if (_to[0] !== segment) {
|
|
176
|
+
break;
|
|
177
|
+
}
|
|
178
|
+
_from.shift();
|
|
179
|
+
_to.shift();
|
|
180
|
+
}
|
|
181
|
+
return [..._from.map(() => ".."), ..._to].join("/");
|
|
182
|
+
};
|
|
183
|
+
var dirname = function(p) {
|
|
184
|
+
const segments = normalizeWindowsPath(p).replace(/\/$/, "").split("/").slice(0, -1);
|
|
185
|
+
if (segments.length === 1 && _DRIVE_LETTER_RE.test(segments[0])) {
|
|
186
|
+
segments[0] += "/";
|
|
187
|
+
}
|
|
188
|
+
return segments.join("/") || (isAbsolute(p) ? "/" : ".");
|
|
189
|
+
};
|
|
190
|
+
var format = function(p) {
|
|
191
|
+
const segments = [p.root, p.dir, p.base ?? p.name + p.ext].filter(Boolean);
|
|
192
|
+
return normalizeWindowsPath(p.root ? resolve(...segments) : segments.join("/"));
|
|
193
|
+
};
|
|
194
|
+
var basename = function(p, extension) {
|
|
195
|
+
const lastSegment = normalizeWindowsPath(p).split("/").pop();
|
|
196
|
+
return extension && lastSegment.endsWith(extension) ? lastSegment.slice(0, -extension.length) : lastSegment;
|
|
197
|
+
};
|
|
198
|
+
var parse = function(p) {
|
|
199
|
+
const root = normalizeWindowsPath(p).split("/").shift() || "/";
|
|
200
|
+
const base = basename(p);
|
|
201
|
+
const extension = extname(base);
|
|
202
|
+
return {
|
|
203
|
+
root,
|
|
204
|
+
dir: dirname(p),
|
|
205
|
+
base,
|
|
206
|
+
ext: extension,
|
|
207
|
+
name: base.slice(0, base.length - extension.length)
|
|
208
|
+
};
|
|
209
|
+
};
|
|
210
|
+
// /Users/chrisbreuer/Code/stacks/storage/framework/core/src/path/src/index.ts
|
|
211
|
+
function actionsPath(path2) {
|
|
212
|
+
return corePath(`actions/src/${path2 || ""}`);
|
|
213
|
+
}
|
|
214
|
+
function relativeActionsPath(path2) {
|
|
215
|
+
return relative(projectPath(), actionsPath(path2));
|
|
216
|
+
}
|
|
217
|
+
function aiPath(path2) {
|
|
218
|
+
return corePath(`ai/${path2 || ""}`);
|
|
219
|
+
}
|
|
220
|
+
function assetsPath(path2) {
|
|
221
|
+
return resourcesPath(`assets/${path2 || ""}`);
|
|
222
|
+
}
|
|
223
|
+
function aliasPath() {
|
|
224
|
+
return corePath("alias/src/index.ts");
|
|
225
|
+
}
|
|
226
|
+
function analyticsPath(path2) {
|
|
227
|
+
return corePath(`analytics/${path2 || ""}`);
|
|
228
|
+
}
|
|
229
|
+
function arraysPath(path2) {
|
|
230
|
+
return corePath(`arrays/${path2 || ""}`);
|
|
231
|
+
}
|
|
232
|
+
function appPath(path2) {
|
|
233
|
+
return projectPath(`app/${path2 || ""}`);
|
|
234
|
+
}
|
|
235
|
+
function authPath(path2) {
|
|
236
|
+
return corePath(`auth/${path2 || ""}`);
|
|
237
|
+
}
|
|
238
|
+
function buildPath(path2) {
|
|
239
|
+
return corePath(`build/${path2 || ""}`);
|
|
240
|
+
}
|
|
241
|
+
function buildEnginePath(path2) {
|
|
242
|
+
return buildPath(`${path2 || ""}`);
|
|
243
|
+
}
|
|
244
|
+
function libsPath(path2) {
|
|
245
|
+
return frameworkPath(`libs/${path2 || ""}`);
|
|
246
|
+
}
|
|
247
|
+
function libsEntriesPath(path2) {
|
|
248
|
+
return libsPath(`entries/${path2 || ""}`);
|
|
249
|
+
}
|
|
250
|
+
function cachePath(path2) {
|
|
251
|
+
return corePath(`cache/${path2 || ""}`);
|
|
252
|
+
}
|
|
253
|
+
function chatPath(path2) {
|
|
254
|
+
return corePath(`chat/${path2 || ""}`);
|
|
255
|
+
}
|
|
256
|
+
function cliPath(path2) {
|
|
257
|
+
return corePath(`cli/${path2 || ""}`);
|
|
258
|
+
}
|
|
259
|
+
function cloudPath(path2) {
|
|
260
|
+
return corePath(`cloud/${path2 || ""}`);
|
|
261
|
+
}
|
|
262
|
+
function collectionsPath(path2) {
|
|
263
|
+
return corePath(`collections/${path2 || ""}`);
|
|
264
|
+
}
|
|
265
|
+
function componentsPath(path2) {
|
|
266
|
+
return resourcesPath(`components/${path2 || ""}`);
|
|
267
|
+
}
|
|
268
|
+
function configPath(path2) {
|
|
269
|
+
return corePath(`config/${path2 || ""}`);
|
|
270
|
+
}
|
|
271
|
+
function corePath(path2) {
|
|
272
|
+
return frameworkPath(`core/src/${path2 || ""}`);
|
|
273
|
+
}
|
|
274
|
+
function customElementsDataPath() {
|
|
275
|
+
return corePath("custom-elements.json");
|
|
276
|
+
}
|
|
277
|
+
function databasePath(path2) {
|
|
278
|
+
return corePath(`database/${path2 || ""}`);
|
|
279
|
+
}
|
|
280
|
+
function datetimePath(path2) {
|
|
281
|
+
return corePath(`datetime/${path2 || ""}`);
|
|
282
|
+
}
|
|
283
|
+
function developmentPath(path2) {
|
|
284
|
+
return corePath(`development/${path2 || ""}`);
|
|
285
|
+
}
|
|
286
|
+
function desktopPath(path2) {
|
|
287
|
+
return corePath(`desktop/${path2 || ""}`);
|
|
288
|
+
}
|
|
289
|
+
function docsPath(path2) {
|
|
290
|
+
return corePath(`docs/${path2 || ""}`);
|
|
291
|
+
}
|
|
292
|
+
function dnsPath(path2) {
|
|
293
|
+
return corePath(`domains/${path2 || ""}`);
|
|
294
|
+
}
|
|
295
|
+
function emailPath(path2) {
|
|
296
|
+
return notificationsPath(`email/${path2 || ""}`);
|
|
297
|
+
}
|
|
298
|
+
function enumsPath(path2) {
|
|
299
|
+
return corePath(`enums/${path2 || ""}`);
|
|
300
|
+
}
|
|
301
|
+
function errorHandlingPath(path2) {
|
|
302
|
+
return corePath(`error-handling/${path2 || ""}`);
|
|
303
|
+
}
|
|
304
|
+
function eventsPath(path2) {
|
|
305
|
+
return corePath(`events/${path2 || ""}`);
|
|
306
|
+
}
|
|
307
|
+
function coreEnvPath(path2) {
|
|
308
|
+
return corePath(`env/${path2 || ""}`);
|
|
309
|
+
}
|
|
310
|
+
function examplesPath(type) {
|
|
311
|
+
return frameworkPath(`examples/${type || ""}`);
|
|
312
|
+
}
|
|
313
|
+
function fakerPath(path2) {
|
|
314
|
+
return corePath(`faker/${path2 || ""}`);
|
|
315
|
+
}
|
|
316
|
+
function frameworkPath(path2) {
|
|
317
|
+
return projectStoragePath(`framework/${path2 || ""}`);
|
|
318
|
+
}
|
|
319
|
+
function healthPath(path2) {
|
|
320
|
+
return corePath(`health/${path2 || ""}`);
|
|
321
|
+
}
|
|
322
|
+
function functionsPath(path2) {
|
|
323
|
+
return resourcesPath(`functions/${path2 || ""}`);
|
|
324
|
+
}
|
|
325
|
+
function gitPath(path2) {
|
|
326
|
+
return corePath(`git/${path2 || ""}`);
|
|
327
|
+
}
|
|
328
|
+
function langPath(path2) {
|
|
329
|
+
return projectPath(`lang/${path2 || ""}`);
|
|
330
|
+
}
|
|
331
|
+
function libraryEntryPath(type) {
|
|
332
|
+
return libsEntriesPath(`${type}.ts`);
|
|
333
|
+
}
|
|
334
|
+
function lintPath(path2) {
|
|
335
|
+
return corePath(`lint/${path2 || ""}`);
|
|
336
|
+
}
|
|
337
|
+
function loggingPath(path2) {
|
|
338
|
+
return corePath(`logging/${path2 || ""}`);
|
|
339
|
+
}
|
|
340
|
+
function modulesPath(path2) {
|
|
341
|
+
return resourcesPath(`modules/${path2 || ""}`);
|
|
342
|
+
}
|
|
343
|
+
function notificationsPath(path2) {
|
|
344
|
+
return corePath(`notifications/${path2 || ""}`);
|
|
345
|
+
}
|
|
346
|
+
function ormPath(path2) {
|
|
347
|
+
return corePath(`orm/${path2 || ""}`);
|
|
348
|
+
}
|
|
349
|
+
function objectsPath(path2) {
|
|
350
|
+
return corePath(`objects/${path2 || ""}`);
|
|
351
|
+
}
|
|
352
|
+
function onboardingPath(path2) {
|
|
353
|
+
return projectPath(`${path2 || "views/dashboard/onboarding"}`);
|
|
354
|
+
}
|
|
355
|
+
function packageJsonPath(type) {
|
|
356
|
+
if (type === "vue-components")
|
|
357
|
+
return frameworkPath("libs/components/vue/package.json");
|
|
358
|
+
if (type === "web-components")
|
|
359
|
+
return frameworkPath("libs/components/web/package.json");
|
|
360
|
+
return frameworkPath(`libs/${type}/package.json`);
|
|
361
|
+
}
|
|
362
|
+
function viewsPath(path2) {
|
|
363
|
+
return resourcesPath(`views/${path2 || ""}`);
|
|
364
|
+
}
|
|
365
|
+
function pathPath(path2) {
|
|
366
|
+
return corePath(`path/${path2 || ""}`);
|
|
367
|
+
}
|
|
368
|
+
function paymentsPath(path2) {
|
|
369
|
+
return corePath(`payments/${path2 || ""}`);
|
|
370
|
+
}
|
|
371
|
+
function projectPath(filePath = "") {
|
|
372
|
+
let path2 = process2.cwd();
|
|
373
|
+
while (path2.includes("storage"))
|
|
374
|
+
path2 = resolve(path2, "..");
|
|
375
|
+
return resolve(path2, filePath);
|
|
376
|
+
}
|
|
377
|
+
function projectConfigPath(path2) {
|
|
378
|
+
return projectPath(`config/${path2 || ""}`);
|
|
379
|
+
}
|
|
380
|
+
function projectStoragePath(path2) {
|
|
381
|
+
return projectPath(`storage/${path2 || ""}`);
|
|
382
|
+
}
|
|
383
|
+
function publicPath(path2) {
|
|
384
|
+
return projectPath(`public/${path2 || ""}`);
|
|
385
|
+
}
|
|
386
|
+
function pushPath(path2) {
|
|
387
|
+
return notificationsPath(`push/${path2 || ""}`);
|
|
388
|
+
}
|
|
389
|
+
function queryBuilderPath(path2) {
|
|
390
|
+
return corePath(`query-builder/${path2 || ""}`);
|
|
391
|
+
}
|
|
392
|
+
function queuePath(path2) {
|
|
393
|
+
return corePath(`queue/${path2 || ""}`);
|
|
394
|
+
}
|
|
395
|
+
function realtimePath(path2) {
|
|
396
|
+
return corePath(`realtime/${path2 || ""}`);
|
|
397
|
+
}
|
|
398
|
+
function resourcesPath(path2) {
|
|
399
|
+
return projectPath(`resources/${path2 || ""}`);
|
|
400
|
+
}
|
|
401
|
+
function replPath(path2) {
|
|
402
|
+
return corePath(`repl/${path2 || ""}`);
|
|
403
|
+
}
|
|
404
|
+
function routerPath(path2) {
|
|
405
|
+
return corePath(`router/${path2 || ""}`);
|
|
406
|
+
}
|
|
407
|
+
function routesPath(path2) {
|
|
408
|
+
return projectPath(`routes/${path2 || ""}`);
|
|
409
|
+
}
|
|
410
|
+
function searchEnginePath(path2) {
|
|
411
|
+
return corePath(`search-engine/${path2 || ""}`);
|
|
412
|
+
}
|
|
413
|
+
function settingsPath(path2) {
|
|
414
|
+
return projectPath(`${path2 || "views/dashboard/settings"}`);
|
|
415
|
+
}
|
|
416
|
+
function scriptsPath(path2) {
|
|
417
|
+
return frameworkPath(`core/scripts/${path2 || ""}`);
|
|
418
|
+
}
|
|
419
|
+
function schedulerPath(path2) {
|
|
420
|
+
return corePath(`scheduler/${path2 || ""}`);
|
|
421
|
+
}
|
|
422
|
+
function signalsPath(path2) {
|
|
423
|
+
return corePath(`signals/${path2 || ""}`);
|
|
424
|
+
}
|
|
425
|
+
function slugPath(path2) {
|
|
426
|
+
return corePath(`slug/${path2 || ""}`);
|
|
427
|
+
}
|
|
428
|
+
function smsPath(path2) {
|
|
429
|
+
return notificationsPath(`sms/${path2 || ""}`);
|
|
430
|
+
}
|
|
431
|
+
function storagePath(path2) {
|
|
432
|
+
return corePath(`storage/${path2 || ""}`);
|
|
433
|
+
}
|
|
434
|
+
function storesPath(path2) {
|
|
435
|
+
return resourcesPath(`stores/${path2 || ""}`);
|
|
436
|
+
}
|
|
437
|
+
function securityPath(path2) {
|
|
438
|
+
return corePath(`security/${path2 || ""}`);
|
|
439
|
+
}
|
|
440
|
+
function serverPath(path2) {
|
|
441
|
+
return corePath(`server/${path2 || ""}`);
|
|
442
|
+
}
|
|
443
|
+
function serverlessPath(path2) {
|
|
444
|
+
return corePath(`serverless/${path2 || ""}`);
|
|
445
|
+
}
|
|
446
|
+
function stacksPath(path2) {
|
|
447
|
+
return frameworkPath(`src/${path2 || ""}`);
|
|
448
|
+
}
|
|
449
|
+
function stringsPath(path2) {
|
|
450
|
+
return corePath(`strings/${path2 || ""}`);
|
|
451
|
+
}
|
|
452
|
+
function testingPath(path2) {
|
|
453
|
+
return corePath(`testing/${path2 || ""}`);
|
|
454
|
+
}
|
|
455
|
+
function tinkerPath(path2) {
|
|
456
|
+
return corePath(`tinker/${path2 || ""}`);
|
|
457
|
+
}
|
|
458
|
+
function testsPath(path2) {
|
|
459
|
+
return frameworkPath(`tests/${path2 || ""}`);
|
|
460
|
+
}
|
|
461
|
+
function typesPath(path2) {
|
|
462
|
+
return corePath(`types/${path2 || ""}`);
|
|
463
|
+
}
|
|
464
|
+
function uiPath(path2) {
|
|
465
|
+
return corePath(`ui/${path2 || ""}`);
|
|
466
|
+
}
|
|
467
|
+
function utilsPath(path2) {
|
|
468
|
+
return corePath(`utils/${path2 || ""}`);
|
|
469
|
+
}
|
|
470
|
+
function validationPath(path2) {
|
|
471
|
+
return corePath(`validation/${path2 || ""}`);
|
|
472
|
+
}
|
|
473
|
+
function vitePath(path2) {
|
|
474
|
+
return corePath(`vite/${path2 || ""}`);
|
|
475
|
+
}
|
|
476
|
+
function xRayPath(path2) {
|
|
477
|
+
return frameworkPath(`stacks/x-ray/${path2 || ""}`);
|
|
478
|
+
}
|
|
479
|
+
var path2 = {
|
|
480
|
+
actionsPath,
|
|
481
|
+
aiPath,
|
|
482
|
+
assetsPath,
|
|
483
|
+
relativeActionsPath,
|
|
484
|
+
aliasPath,
|
|
485
|
+
analyticsPath,
|
|
486
|
+
arraysPath,
|
|
487
|
+
appPath,
|
|
488
|
+
authPath,
|
|
489
|
+
buildEnginePath,
|
|
490
|
+
libsEntriesPath,
|
|
491
|
+
buildPath,
|
|
492
|
+
cachePath,
|
|
493
|
+
chatPath,
|
|
494
|
+
cliPath,
|
|
495
|
+
cloudPath,
|
|
496
|
+
collectionsPath,
|
|
497
|
+
componentsPath,
|
|
498
|
+
configPath,
|
|
499
|
+
projectConfigPath,
|
|
500
|
+
corePath,
|
|
501
|
+
customElementsDataPath,
|
|
502
|
+
databasePath,
|
|
503
|
+
datetimePath,
|
|
504
|
+
developmentPath,
|
|
505
|
+
desktopPath,
|
|
506
|
+
docsPath,
|
|
507
|
+
dnsPath,
|
|
508
|
+
emailPath,
|
|
509
|
+
enumsPath,
|
|
510
|
+
errorHandlingPath,
|
|
511
|
+
eventsPath,
|
|
512
|
+
coreEnvPath,
|
|
513
|
+
healthPath,
|
|
514
|
+
examplesPath,
|
|
515
|
+
fakerPath,
|
|
516
|
+
frameworkPath,
|
|
517
|
+
storagePath,
|
|
518
|
+
functionsPath,
|
|
519
|
+
gitPath,
|
|
520
|
+
langPath,
|
|
521
|
+
libsPath,
|
|
522
|
+
libraryEntryPath,
|
|
523
|
+
lintPath,
|
|
524
|
+
loggingPath,
|
|
525
|
+
modulesPath,
|
|
526
|
+
ormPath,
|
|
527
|
+
objectsPath,
|
|
528
|
+
onboardingPath,
|
|
529
|
+
notificationsPath,
|
|
530
|
+
packageJsonPath,
|
|
531
|
+
viewsPath,
|
|
532
|
+
pathPath,
|
|
533
|
+
paymentsPath,
|
|
534
|
+
projectPath,
|
|
535
|
+
projectStoragePath,
|
|
536
|
+
publicPath,
|
|
537
|
+
pushPath,
|
|
538
|
+
queryBuilderPath,
|
|
539
|
+
queuePath,
|
|
540
|
+
realtimePath,
|
|
541
|
+
resourcesPath,
|
|
542
|
+
replPath,
|
|
543
|
+
routerPath,
|
|
544
|
+
routesPath,
|
|
545
|
+
searchEnginePath,
|
|
546
|
+
schedulerPath,
|
|
547
|
+
settingsPath,
|
|
548
|
+
smsPath,
|
|
549
|
+
signalsPath,
|
|
550
|
+
slugPath,
|
|
551
|
+
scriptsPath,
|
|
552
|
+
securityPath,
|
|
553
|
+
serverPath,
|
|
554
|
+
serverlessPath,
|
|
555
|
+
stacksPath,
|
|
556
|
+
stringsPath,
|
|
557
|
+
storesPath,
|
|
558
|
+
testingPath,
|
|
559
|
+
testsPath,
|
|
560
|
+
tinkerPath,
|
|
561
|
+
typesPath,
|
|
562
|
+
uiPath,
|
|
563
|
+
utilsPath,
|
|
564
|
+
validationPath,
|
|
565
|
+
vitePath,
|
|
566
|
+
xRayPath,
|
|
567
|
+
basename,
|
|
568
|
+
delimiter,
|
|
569
|
+
dirname,
|
|
570
|
+
extname,
|
|
571
|
+
format,
|
|
572
|
+
isAbsolute,
|
|
573
|
+
join,
|
|
574
|
+
normalize,
|
|
575
|
+
normalizeString,
|
|
576
|
+
parse,
|
|
577
|
+
relative,
|
|
578
|
+
resolve,
|
|
579
|
+
sep,
|
|
580
|
+
toNamespacedPath
|
|
581
|
+
};
|
|
582
|
+
|
|
583
|
+
// src/middleware.ts
|
|
584
|
+
async function importMiddlewares(directory) {
|
|
585
|
+
const middlewares = [];
|
|
586
|
+
const files = await readdir(directory);
|
|
587
|
+
for (const file of files) {
|
|
588
|
+
const imported = await import(path2.join(directory, file));
|
|
589
|
+
middlewares.push(imported.default);
|
|
590
|
+
}
|
|
591
|
+
return middlewares;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
class Middleware {
|
|
595
|
+
name;
|
|
596
|
+
priority;
|
|
597
|
+
handle;
|
|
598
|
+
constructor(data) {
|
|
599
|
+
this.name = data.name;
|
|
600
|
+
this.priority = data.priority;
|
|
601
|
+
this.handle = data.handle;
|
|
602
|
+
}
|
|
603
|
+
}
|
|
604
|
+
var readdir = promisify(fs.readdir);
|
|
605
|
+
var middlewares = await importMiddlewares(appPath("middleware"));
|
|
606
|
+
// src/request.ts
|
|
607
|
+
class Request {
|
|
608
|
+
query = {};
|
|
609
|
+
params = null;
|
|
610
|
+
addQuery(url) {
|
|
611
|
+
this.query = Object.fromEntries(url.searchParams);
|
|
612
|
+
}
|
|
613
|
+
get(element) {
|
|
614
|
+
return this.query[element];
|
|
615
|
+
}
|
|
616
|
+
all() {
|
|
617
|
+
return this.query;
|
|
618
|
+
}
|
|
619
|
+
has(element) {
|
|
620
|
+
return element in this.query;
|
|
621
|
+
}
|
|
622
|
+
isEmpty() {
|
|
623
|
+
return Object.keys(this.query).length === 0;
|
|
624
|
+
}
|
|
625
|
+
extractParamsFromRoute(routePattern, pathname) {
|
|
626
|
+
const pattern = new RegExp(`^${routePattern.replace(/:(\w+)/g, (match2, paramName) => `(?<${paramName}>\\w+)`)}\$`);
|
|
627
|
+
const match = pattern.exec(pathname);
|
|
628
|
+
if (match?.groups)
|
|
629
|
+
this.params = match?.groups;
|
|
630
|
+
}
|
|
631
|
+
getParams(key) {
|
|
632
|
+
return this.params ? this.params[key] || null : null;
|
|
633
|
+
}
|
|
634
|
+
}
|
|
635
|
+
var request = new Request;
|
|
636
|
+
// src/server.ts
|
|
637
|
+
import {extname as extname2} from "path";
|
|
638
|
+
import {URL} from "url";
|
|
639
|
+
import {localUrl} from "@stacksjs/config";
|
|
640
|
+
async function serve(options = {}) {
|
|
641
|
+
const hostname = options.host || options.tunnel ? await localUrl({ type: "backend" }) : "127.0.0.1";
|
|
642
|
+
const port = options.port || 3000;
|
|
643
|
+
Bun.serve({
|
|
644
|
+
hostname,
|
|
645
|
+
port,
|
|
646
|
+
fetch(req) {
|
|
647
|
+
console.log(req);
|
|
648
|
+
return serverResponse(req);
|
|
649
|
+
}
|
|
650
|
+
});
|
|
651
|
+
}
|
|
652
|
+
async function serverResponse(req) {
|
|
653
|
+
console.log("serverResponse", req);
|
|
654
|
+
const routesList = await route.getRoutes();
|
|
655
|
+
const url = new URL(req.url);
|
|
656
|
+
const foundRoute = routesList.find((route2) => {
|
|
657
|
+
const pattern = new RegExp(`^${route2.uri.replace(/:\w+/g, "\\w+")}\$`);
|
|
658
|
+
return pattern.test(url.pathname);
|
|
659
|
+
});
|
|
660
|
+
if (!foundRoute)
|
|
661
|
+
return new Response("Not found", { status: 404 });
|
|
662
|
+
addRouteParamsAndQuery(url, foundRoute);
|
|
663
|
+
executeMiddleware(foundRoute);
|
|
664
|
+
return execute(foundRoute, req, { statusCode: foundRoute?.statusCode });
|
|
665
|
+
}
|
|
666
|
+
var addRouteParamsAndQuery = function(url, route2) {
|
|
667
|
+
if (!isObjectNotEmpty(url.searchParams))
|
|
668
|
+
request.addQuery(url);
|
|
669
|
+
request.extractParamsFromRoute(route2.uri, url.pathname);
|
|
670
|
+
};
|
|
671
|
+
var executeMiddleware = function(route2) {
|
|
672
|
+
const { middleware: middleware2 = null } = route2;
|
|
673
|
+
if (middleware2 && middlewares && isObjectNotEmpty(middlewares)) {
|
|
674
|
+
if (isString(middleware2)) {
|
|
675
|
+
const middlewareItem = middlewares.find((middlewareItem2) => {
|
|
676
|
+
return middlewareItem2.name === middleware2;
|
|
677
|
+
});
|
|
678
|
+
if (middlewareItem)
|
|
679
|
+
middlewareItem.handle();
|
|
680
|
+
} else {
|
|
681
|
+
middleware2.forEach((m) => {
|
|
682
|
+
const middlewareItem = middlewares.find((middlewareItem2) => {
|
|
683
|
+
return middlewareItem2.name === m;
|
|
684
|
+
});
|
|
685
|
+
if (middlewareItem)
|
|
686
|
+
middlewareItem.handle();
|
|
687
|
+
});
|
|
688
|
+
}
|
|
689
|
+
}
|
|
690
|
+
};
|
|
691
|
+
var execute = function(route2, request3, { statusCode }) {
|
|
692
|
+
if (!statusCode)
|
|
693
|
+
statusCode = 200;
|
|
694
|
+
if (route2?.method === "GET" && (statusCode === 301 || statusCode === 302)) {
|
|
695
|
+
const callback = String(route2.callback);
|
|
696
|
+
const response = Response.redirect(callback, statusCode);
|
|
697
|
+
return noCache(response);
|
|
698
|
+
}
|
|
699
|
+
if (route2?.method !== request3.method)
|
|
700
|
+
return new Response("Method not allowed", { status: 405 });
|
|
701
|
+
if (isString(route2.callback) && extname2(route2.callback) === ".html") {
|
|
702
|
+
try {
|
|
703
|
+
const fileContent = Bun.file(route2.callback);
|
|
704
|
+
return new Response(fileContent, { headers: { "Content-Type": "text/html" } });
|
|
705
|
+
} catch (error) {
|
|
706
|
+
return new Response("Error reading the HTML file", { status: 500 });
|
|
707
|
+
}
|
|
708
|
+
}
|
|
709
|
+
if (isString(route2.callback))
|
|
710
|
+
return new Response(route2.callback);
|
|
711
|
+
if (isFunction(route2.callback)) {
|
|
712
|
+
const result = route2.callback();
|
|
713
|
+
return new Response(JSON.stringify(result));
|
|
714
|
+
}
|
|
715
|
+
if (isObject(route2.callback))
|
|
716
|
+
return new Response(JSON.stringify(route2.callback));
|
|
717
|
+
return new Response("Unknown callback type.", { status: 500 });
|
|
718
|
+
};
|
|
719
|
+
var noCache = function(response) {
|
|
720
|
+
response.headers.set("Cache-Control", "no-store, no-cache, must-revalidate, proxy-revalidate");
|
|
721
|
+
response.headers.set("Pragma", "no-cache");
|
|
722
|
+
response.headers.set("Expires", "0");
|
|
723
|
+
return response;
|
|
724
|
+
};
|
|
725
|
+
var isString = function(val) {
|
|
726
|
+
return typeof val === "string";
|
|
727
|
+
};
|
|
728
|
+
var isObjectNotEmpty = function(obj) {
|
|
729
|
+
return Object.keys(obj).length > 0;
|
|
730
|
+
};
|
|
731
|
+
var isFunction = function(val) {
|
|
732
|
+
return typeof val === "function";
|
|
733
|
+
};
|
|
734
|
+
var isObject = function(val) {
|
|
735
|
+
return val !== null && typeof val === "object" && !Array.isArray(val);
|
|
736
|
+
};
|
|
737
|
+
// src/router.ts
|
|
738
|
+
class Router {
|
|
739
|
+
routes = [];
|
|
740
|
+
addRoute(method, uri, callback, statusCode) {
|
|
741
|
+
const name = uri.replace(/\//g, ".").replace(/:/g, "");
|
|
742
|
+
const pattern = new RegExp(`^${uri.replace(/:[a-zA-Z]+/g, (_match) => {
|
|
743
|
+
return "([a-zA-Z0-9-]+)";
|
|
744
|
+
})}\$`);
|
|
745
|
+
let routeCallback;
|
|
746
|
+
if (typeof callback === "string" || typeof callback === "object") {
|
|
747
|
+
routeCallback = () => callback;
|
|
748
|
+
} else {
|
|
749
|
+
routeCallback = callback;
|
|
750
|
+
}
|
|
751
|
+
this.routes.push({
|
|
752
|
+
name,
|
|
753
|
+
method,
|
|
754
|
+
url: uri,
|
|
755
|
+
uri,
|
|
756
|
+
callback: routeCallback,
|
|
757
|
+
pattern,
|
|
758
|
+
statusCode,
|
|
759
|
+
paramNames: []
|
|
760
|
+
});
|
|
761
|
+
}
|
|
762
|
+
get(path5, callback) {
|
|
763
|
+
this.addRoute("GET", path5, callback, 200);
|
|
764
|
+
return this;
|
|
765
|
+
}
|
|
766
|
+
post(path5, callback) {
|
|
767
|
+
this.addRoute("POST", path5, callback, 201);
|
|
768
|
+
return this;
|
|
769
|
+
}
|
|
770
|
+
view(path5, callback) {
|
|
771
|
+
this.addRoute("GET", path5, callback, 200);
|
|
772
|
+
return this;
|
|
773
|
+
}
|
|
774
|
+
redirect(path5, callback, _status) {
|
|
775
|
+
this.addRoute("GET", path5, callback, 302);
|
|
776
|
+
return this;
|
|
777
|
+
}
|
|
778
|
+
delete(path5, callback) {
|
|
779
|
+
this.addRoute("DELETE", path5, callback, 204);
|
|
780
|
+
return this;
|
|
781
|
+
}
|
|
782
|
+
patch(path5, callback) {
|
|
783
|
+
this.addRoute("PATCH", path5, callback, 202);
|
|
784
|
+
return this;
|
|
785
|
+
}
|
|
786
|
+
put(path5, callback) {
|
|
787
|
+
this.addRoute("PUT", path5, callback, 202);
|
|
788
|
+
return this;
|
|
789
|
+
}
|
|
790
|
+
group(options, callback) {
|
|
791
|
+
let cb;
|
|
792
|
+
if (typeof options === "function") {
|
|
793
|
+
cb = options;
|
|
794
|
+
options = {};
|
|
795
|
+
} else {
|
|
796
|
+
if (!callback)
|
|
797
|
+
throw new Error("Missing callback function for route group.");
|
|
798
|
+
cb = callback;
|
|
799
|
+
}
|
|
800
|
+
const { prefix = "", middleware: middleware2 = [] } = options;
|
|
801
|
+
const originalRoutes = this.routes;
|
|
802
|
+
this.routes = [];
|
|
803
|
+
cb();
|
|
804
|
+
this.routes.forEach((r) => {
|
|
805
|
+
r.uri = `${prefix}${r.uri}`;
|
|
806
|
+
if (middleware2.length)
|
|
807
|
+
r.middleware = middleware2;
|
|
808
|
+
originalRoutes.push(r);
|
|
809
|
+
return this;
|
|
810
|
+
});
|
|
811
|
+
this.routes = originalRoutes;
|
|
812
|
+
return this;
|
|
813
|
+
}
|
|
814
|
+
name(name) {
|
|
815
|
+
this.routes[this.routes.length - 1].name = name;
|
|
816
|
+
return this;
|
|
817
|
+
}
|
|
818
|
+
middleware(middleware2) {
|
|
819
|
+
this.routes[this.routes.length - 1].middleware = middleware2;
|
|
820
|
+
return this;
|
|
821
|
+
}
|
|
822
|
+
prefix(prefix) {
|
|
823
|
+
this.routes[this.routes.length - 1].prefix = prefix;
|
|
824
|
+
return this;
|
|
825
|
+
}
|
|
826
|
+
async getRoutes() {
|
|
827
|
+
await import(projectPath("routes/api.ts"));
|
|
828
|
+
return this.routes;
|
|
829
|
+
}
|
|
830
|
+
}
|
|
831
|
+
var route = new Router;
|
|
832
|
+
export {
|
|
833
|
+
serverResponse,
|
|
834
|
+
serve,
|
|
835
|
+
route,
|
|
836
|
+
request,
|
|
837
|
+
middlewares,
|
|
838
|
+
Router,
|
|
839
|
+
Request,
|
|
840
|
+
Middleware
|
|
841
|
+
};
|