├── .changeset ├── README.md └── config.json ├── .github ├── ISSUE_TEMPLATE │ ├── ---01-bug-report.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── biome.json ├── deprecated ├── form │ ├── CHANGELOG.md │ ├── README.md │ ├── components │ │ ├── FormName.astro │ │ └── index.ts │ ├── package.json │ ├── src │ │ ├── cli.ts │ │ ├── index.ts │ │ ├── middleware.ts │ │ └── module.ts │ ├── templates │ │ ├── preact │ │ │ ├── Form.tsx │ │ │ ├── env.d.ts │ │ │ └── tsconfig.json │ │ ├── react-external │ │ │ ├── Form.tsx │ │ │ └── tsconfig.json │ │ ├── react │ │ │ ├── Form.tsx │ │ │ ├── env.d.ts │ │ │ └── tsconfig.json │ │ └── solid-js │ │ │ ├── Form.tsx │ │ │ ├── env.d.ts │ │ │ └── tsconfig.json │ ├── tsconfig.json │ └── types.d.ts ├── frame │ ├── CHANGELOG.md │ ├── components │ │ ├── Frame.astro │ │ ├── env.d.ts │ │ ├── index.ts │ │ └── tsconfig.json │ ├── package.json │ ├── src │ │ ├── client.ts │ │ ├── index.ts │ │ └── module.ts │ └── tsconfig.json └── stream │ ├── CHANGELOG.md │ ├── README.md │ ├── components │ ├── Suspense.astro │ ├── env.d.ts │ ├── index.ts │ ├── tsconfig.json │ └── types.ts │ ├── package.json │ ├── src │ ├── env.d.ts │ ├── index.ts │ ├── middleware.ts │ └── utils.ts │ └── tsconfig.json ├── examples ├── nextjs-app-router │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── Signup.tsx │ │ ├── action.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ ├── page.tsx │ │ └── utils.ts │ ├── components │ │ └── Form.tsx │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── tailwind.config.ts │ └── tsconfig.json └── playground │ ├── .gitignore │ ├── .vscode │ ├── extensions.json │ └── launch.json │ ├── CHANGELOG.md │ ├── README.md │ ├── astro.config.mjs │ ├── package.json │ ├── public │ └── favicon.svg │ ├── src │ ├── components │ │ ├── Layout.astro │ │ ├── Sanitize.tsx │ │ ├── Wait.astro │ │ ├── preact │ │ │ ├── Form.tsx │ │ │ └── Signup.tsx │ │ ├── react │ │ │ ├── Form.tsx │ │ │ └── Signup.tsx │ │ └── solid-js │ │ │ ├── Form.tsx │ │ │ └── Signup.tsx │ ├── env.d.ts │ └── pages │ │ ├── array.astro │ │ ├── index.astro │ │ └── stream.astro │ ├── tailwind.config.mjs │ └── tsconfig.json ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── tsconfig.base.json ├── turbo.json └── www ├── .gitignore ├── astro.config.mjs ├── package.json ├── public ├── assets │ ├── astro-partial-rendering-demo.mp4 │ └── simple-stream-intro.mov └── favicon.svg ├── src ├── content │ ├── config.ts │ └── docs │ │ ├── form │ │ ├── client.md │ │ ├── index.mdx │ │ └── parse.md │ │ ├── index.mdx │ │ ├── query.mdx │ │ ├── scope.mdx │ │ ├── store.mdx │ │ └── stream.md ├── env.d.ts └── styles │ └── custom.css └── tsconfig.json /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---01-bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/.github/ISSUE_TEMPLATE/---01-bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/biome.json -------------------------------------------------------------------------------- /deprecated/form/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/form/CHANGELOG.md -------------------------------------------------------------------------------- /deprecated/form/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/form/README.md -------------------------------------------------------------------------------- /deprecated/form/components/FormName.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/form/components/FormName.astro -------------------------------------------------------------------------------- /deprecated/form/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/form/components/index.ts -------------------------------------------------------------------------------- /deprecated/form/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/form/package.json -------------------------------------------------------------------------------- /deprecated/form/src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/form/src/cli.ts -------------------------------------------------------------------------------- /deprecated/form/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/form/src/index.ts -------------------------------------------------------------------------------- /deprecated/form/src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/form/src/middleware.ts -------------------------------------------------------------------------------- /deprecated/form/src/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/form/src/module.ts -------------------------------------------------------------------------------- /deprecated/form/templates/preact/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/form/templates/preact/Form.tsx -------------------------------------------------------------------------------- /deprecated/form/templates/preact/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/form/templates/preact/env.d.ts -------------------------------------------------------------------------------- /deprecated/form/templates/preact/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/form/templates/preact/tsconfig.json -------------------------------------------------------------------------------- /deprecated/form/templates/react-external/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/form/templates/react-external/Form.tsx -------------------------------------------------------------------------------- /deprecated/form/templates/react-external/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/form/templates/react-external/tsconfig.json -------------------------------------------------------------------------------- /deprecated/form/templates/react/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/form/templates/react/Form.tsx -------------------------------------------------------------------------------- /deprecated/form/templates/react/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/form/templates/react/env.d.ts -------------------------------------------------------------------------------- /deprecated/form/templates/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/form/templates/react/tsconfig.json -------------------------------------------------------------------------------- /deprecated/form/templates/solid-js/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/form/templates/solid-js/Form.tsx -------------------------------------------------------------------------------- /deprecated/form/templates/solid-js/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/form/templates/solid-js/env.d.ts -------------------------------------------------------------------------------- /deprecated/form/templates/solid-js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/form/templates/solid-js/tsconfig.json -------------------------------------------------------------------------------- /deprecated/form/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/form/tsconfig.json -------------------------------------------------------------------------------- /deprecated/form/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/form/types.d.ts -------------------------------------------------------------------------------- /deprecated/frame/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/frame/CHANGELOG.md -------------------------------------------------------------------------------- /deprecated/frame/components/Frame.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/frame/components/Frame.astro -------------------------------------------------------------------------------- /deprecated/frame/components/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | interface ImportMetaEnv { 4 | readonly PAGES_DIR: string; 5 | } 6 | -------------------------------------------------------------------------------- /deprecated/frame/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/frame/components/index.ts -------------------------------------------------------------------------------- /deprecated/frame/components/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "astro/tsconfigs/strictest" 3 | } 4 | -------------------------------------------------------------------------------- /deprecated/frame/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/frame/package.json -------------------------------------------------------------------------------- /deprecated/frame/src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/frame/src/client.ts -------------------------------------------------------------------------------- /deprecated/frame/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/frame/src/index.ts -------------------------------------------------------------------------------- /deprecated/frame/src/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/frame/src/module.ts -------------------------------------------------------------------------------- /deprecated/frame/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/frame/tsconfig.json -------------------------------------------------------------------------------- /deprecated/stream/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/stream/CHANGELOG.md -------------------------------------------------------------------------------- /deprecated/stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/stream/README.md -------------------------------------------------------------------------------- /deprecated/stream/components/Suspense.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/stream/components/Suspense.astro -------------------------------------------------------------------------------- /deprecated/stream/components/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/stream/components/env.d.ts -------------------------------------------------------------------------------- /deprecated/stream/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/stream/components/index.ts -------------------------------------------------------------------------------- /deprecated/stream/components/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "astro/tsconfigs/strictest" 3 | } 4 | -------------------------------------------------------------------------------- /deprecated/stream/components/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/stream/components/types.ts -------------------------------------------------------------------------------- /deprecated/stream/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/stream/package.json -------------------------------------------------------------------------------- /deprecated/stream/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/stream/src/env.d.ts -------------------------------------------------------------------------------- /deprecated/stream/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/stream/src/index.ts -------------------------------------------------------------------------------- /deprecated/stream/src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/stream/src/middleware.ts -------------------------------------------------------------------------------- /deprecated/stream/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/stream/src/utils.ts -------------------------------------------------------------------------------- /deprecated/stream/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/deprecated/stream/tsconfig.json -------------------------------------------------------------------------------- /examples/nextjs-app-router/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/nextjs-app-router/.gitignore -------------------------------------------------------------------------------- /examples/nextjs-app-router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/nextjs-app-router/README.md -------------------------------------------------------------------------------- /examples/nextjs-app-router/app/Signup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/nextjs-app-router/app/Signup.tsx -------------------------------------------------------------------------------- /examples/nextjs-app-router/app/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/nextjs-app-router/app/action.ts -------------------------------------------------------------------------------- /examples/nextjs-app-router/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/nextjs-app-router/app/favicon.ico -------------------------------------------------------------------------------- /examples/nextjs-app-router/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/nextjs-app-router/app/globals.css -------------------------------------------------------------------------------- /examples/nextjs-app-router/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/nextjs-app-router/app/layout.tsx -------------------------------------------------------------------------------- /examples/nextjs-app-router/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/nextjs-app-router/app/page.tsx -------------------------------------------------------------------------------- /examples/nextjs-app-router/app/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/nextjs-app-router/app/utils.ts -------------------------------------------------------------------------------- /examples/nextjs-app-router/components/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/nextjs-app-router/components/Form.tsx -------------------------------------------------------------------------------- /examples/nextjs-app-router/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/nextjs-app-router/next.config.js -------------------------------------------------------------------------------- /examples/nextjs-app-router/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/nextjs-app-router/package.json -------------------------------------------------------------------------------- /examples/nextjs-app-router/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/nextjs-app-router/postcss.config.js -------------------------------------------------------------------------------- /examples/nextjs-app-router/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/nextjs-app-router/tailwind.config.ts -------------------------------------------------------------------------------- /examples/nextjs-app-router/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/nextjs-app-router/tsconfig.json -------------------------------------------------------------------------------- /examples/playground/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/playground/.gitignore -------------------------------------------------------------------------------- /examples/playground/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/playground/.vscode/extensions.json -------------------------------------------------------------------------------- /examples/playground/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/playground/.vscode/launch.json -------------------------------------------------------------------------------- /examples/playground/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/playground/CHANGELOG.md -------------------------------------------------------------------------------- /examples/playground/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/playground/README.md -------------------------------------------------------------------------------- /examples/playground/astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/playground/astro.config.mjs -------------------------------------------------------------------------------- /examples/playground/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/playground/package.json -------------------------------------------------------------------------------- /examples/playground/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/playground/public/favicon.svg -------------------------------------------------------------------------------- /examples/playground/src/components/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/playground/src/components/Layout.astro -------------------------------------------------------------------------------- /examples/playground/src/components/Sanitize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/playground/src/components/Sanitize.tsx -------------------------------------------------------------------------------- /examples/playground/src/components/Wait.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/playground/src/components/Wait.astro -------------------------------------------------------------------------------- /examples/playground/src/components/preact/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/playground/src/components/preact/Form.tsx -------------------------------------------------------------------------------- /examples/playground/src/components/preact/Signup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/playground/src/components/preact/Signup.tsx -------------------------------------------------------------------------------- /examples/playground/src/components/react/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/playground/src/components/react/Form.tsx -------------------------------------------------------------------------------- /examples/playground/src/components/react/Signup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/playground/src/components/react/Signup.tsx -------------------------------------------------------------------------------- /examples/playground/src/components/solid-js/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/playground/src/components/solid-js/Form.tsx -------------------------------------------------------------------------------- /examples/playground/src/components/solid-js/Signup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/playground/src/components/solid-js/Signup.tsx -------------------------------------------------------------------------------- /examples/playground/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/playground/src/env.d.ts -------------------------------------------------------------------------------- /examples/playground/src/pages/array.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/playground/src/pages/array.astro -------------------------------------------------------------------------------- /examples/playground/src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/playground/src/pages/index.astro -------------------------------------------------------------------------------- /examples/playground/src/pages/stream.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/playground/src/pages/stream.astro -------------------------------------------------------------------------------- /examples/playground/tailwind.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/playground/tailwind.config.mjs -------------------------------------------------------------------------------- /examples/playground/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/examples/playground/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/turbo.json -------------------------------------------------------------------------------- /www/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/www/.gitignore -------------------------------------------------------------------------------- /www/astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/www/astro.config.mjs -------------------------------------------------------------------------------- /www/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/www/package.json -------------------------------------------------------------------------------- /www/public/assets/astro-partial-rendering-demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/www/public/assets/astro-partial-rendering-demo.mp4 -------------------------------------------------------------------------------- /www/public/assets/simple-stream-intro.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/www/public/assets/simple-stream-intro.mov -------------------------------------------------------------------------------- /www/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/www/public/favicon.svg -------------------------------------------------------------------------------- /www/src/content/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/www/src/content/config.ts -------------------------------------------------------------------------------- /www/src/content/docs/form/client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/www/src/content/docs/form/client.md -------------------------------------------------------------------------------- /www/src/content/docs/form/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/www/src/content/docs/form/index.mdx -------------------------------------------------------------------------------- /www/src/content/docs/form/parse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/www/src/content/docs/form/parse.md -------------------------------------------------------------------------------- /www/src/content/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/www/src/content/docs/index.mdx -------------------------------------------------------------------------------- /www/src/content/docs/query.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/www/src/content/docs/query.mdx -------------------------------------------------------------------------------- /www/src/content/docs/scope.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/www/src/content/docs/scope.mdx -------------------------------------------------------------------------------- /www/src/content/docs/store.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/www/src/content/docs/store.mdx -------------------------------------------------------------------------------- /www/src/content/docs/stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/www/src/content/docs/stream.md -------------------------------------------------------------------------------- /www/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-stack/HEAD/www/src/env.d.ts -------------------------------------------------------------------------------- /www/src/styles/custom.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --sl-font: 'Atkinson Hyperlegible', sans-serif; 3 | } 4 | -------------------------------------------------------------------------------- /www/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "astro/tsconfigs/strict" 3 | } --------------------------------------------------------------------------------