├── .eslintignore ├── .eslintrc.cjs ├── .github └── workflows │ ├── node.js.yml │ └── tagged-release.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── bin ├── cli.js └── createDirectoryContents.js ├── package.json ├── requirements.txt └── templates ├── base+tailwind ├── .eslintignore ├── .eslintrc.cjs ├── .flake8 ├── .gitignore ├── .gitignore.template ├── .npmignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── README.md ├── eelApp.py ├── eelApp.spec.example ├── package-lock.json ├── package.json ├── playwright.config.ts ├── postcss.config.cjs ├── py │ ├── __init__.py │ ├── functions │ │ ├── __init__.py │ │ └── eel.py │ └── models │ │ ├── EelExposer.py │ │ └── __init__.py ├── requirements.txt ├── src │ ├── app.css │ ├── app.d.ts │ ├── app.html │ ├── index.test.ts │ ├── lib │ │ └── Spinner.svelte │ └── routes │ │ ├── +layout.svelte │ │ ├── +layout.ts │ │ ├── +page.svelte │ │ └── app │ │ └── +page.svelte ├── static │ └── favicon.png ├── svelte.config.js ├── tailwind.config.cjs ├── tests │ └── test.ts ├── tsconfig.json └── vite.config.ts └── base ├── .eslintignore ├── .eslintrc.cjs ├── .flake8 ├── .gitignore ├── .gitignore.template ├── .npmignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── README.md ├── eelApp.py ├── eelApp.spec.example ├── package-lock.json ├── package.json ├── playwright.config.ts ├── py ├── __init__.py ├── functions │ ├── __init__.py │ └── eel.py └── models │ ├── EelExposer.py │ └── __init__.py ├── requirements.txt ├── src ├── app.d.ts ├── app.html ├── index.test.ts └── routes │ ├── +layout.svelte │ ├── +layout.ts │ ├── +page.svelte │ └── app │ └── +page.svelte ├── static └── favicon.png ├── svelte.config.js ├── tests └── test.ts ├── tsconfig.json └── vite.config.ts /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.github/workflows/tagged-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/.github/workflows/tagged-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/README.md -------------------------------------------------------------------------------- /bin/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/bin/cli.js -------------------------------------------------------------------------------- /bin/createDirectoryContents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/bin/createDirectoryContents.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/base+tailwind/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/.eslintignore -------------------------------------------------------------------------------- /templates/base+tailwind/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/.eslintrc.cjs -------------------------------------------------------------------------------- /templates/base+tailwind/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/.flake8 -------------------------------------------------------------------------------- /templates/base+tailwind/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/.gitignore -------------------------------------------------------------------------------- /templates/base+tailwind/.gitignore.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/.gitignore.template -------------------------------------------------------------------------------- /templates/base+tailwind/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/.npmignore -------------------------------------------------------------------------------- /templates/base+tailwind/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /templates/base+tailwind/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/.prettierignore -------------------------------------------------------------------------------- /templates/base+tailwind/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/.prettierrc -------------------------------------------------------------------------------- /templates/base+tailwind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/README.md -------------------------------------------------------------------------------- /templates/base+tailwind/eelApp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/eelApp.py -------------------------------------------------------------------------------- /templates/base+tailwind/eelApp.spec.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/eelApp.spec.example -------------------------------------------------------------------------------- /templates/base+tailwind/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/package-lock.json -------------------------------------------------------------------------------- /templates/base+tailwind/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/package.json -------------------------------------------------------------------------------- /templates/base+tailwind/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/playwright.config.ts -------------------------------------------------------------------------------- /templates/base+tailwind/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/postcss.config.cjs -------------------------------------------------------------------------------- /templates/base+tailwind/py/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/base+tailwind/py/functions/__init__.py: -------------------------------------------------------------------------------- 1 | from .eel import * 2 | -------------------------------------------------------------------------------- /templates/base+tailwind/py/functions/eel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/py/functions/eel.py -------------------------------------------------------------------------------- /templates/base+tailwind/py/models/EelExposer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/py/models/EelExposer.py -------------------------------------------------------------------------------- /templates/base+tailwind/py/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/py/models/__init__.py -------------------------------------------------------------------------------- /templates/base+tailwind/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/requirements.txt -------------------------------------------------------------------------------- /templates/base+tailwind/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/src/app.css -------------------------------------------------------------------------------- /templates/base+tailwind/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/src/app.d.ts -------------------------------------------------------------------------------- /templates/base+tailwind/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/src/app.html -------------------------------------------------------------------------------- /templates/base+tailwind/src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/src/index.test.ts -------------------------------------------------------------------------------- /templates/base+tailwind/src/lib/Spinner.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/src/lib/Spinner.svelte -------------------------------------------------------------------------------- /templates/base+tailwind/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/src/routes/+layout.svelte -------------------------------------------------------------------------------- /templates/base+tailwind/src/routes/+layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/src/routes/+layout.ts -------------------------------------------------------------------------------- /templates/base+tailwind/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/src/routes/+page.svelte -------------------------------------------------------------------------------- /templates/base+tailwind/src/routes/app/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/src/routes/app/+page.svelte -------------------------------------------------------------------------------- /templates/base+tailwind/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/static/favicon.png -------------------------------------------------------------------------------- /templates/base+tailwind/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/svelte.config.js -------------------------------------------------------------------------------- /templates/base+tailwind/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/tailwind.config.cjs -------------------------------------------------------------------------------- /templates/base+tailwind/tests/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/tests/test.ts -------------------------------------------------------------------------------- /templates/base+tailwind/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/tsconfig.json -------------------------------------------------------------------------------- /templates/base+tailwind/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base+tailwind/vite.config.ts -------------------------------------------------------------------------------- /templates/base/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/.eslintignore -------------------------------------------------------------------------------- /templates/base/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/.eslintrc.cjs -------------------------------------------------------------------------------- /templates/base/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/.flake8 -------------------------------------------------------------------------------- /templates/base/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/.gitignore -------------------------------------------------------------------------------- /templates/base/.gitignore.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/.gitignore.template -------------------------------------------------------------------------------- /templates/base/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/.npmignore -------------------------------------------------------------------------------- /templates/base/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /templates/base/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/.prettierignore -------------------------------------------------------------------------------- /templates/base/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/.prettierrc -------------------------------------------------------------------------------- /templates/base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/README.md -------------------------------------------------------------------------------- /templates/base/eelApp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/eelApp.py -------------------------------------------------------------------------------- /templates/base/eelApp.spec.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/eelApp.spec.example -------------------------------------------------------------------------------- /templates/base/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/package-lock.json -------------------------------------------------------------------------------- /templates/base/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/package.json -------------------------------------------------------------------------------- /templates/base/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/playwright.config.ts -------------------------------------------------------------------------------- /templates/base/py/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/base/py/functions/__init__.py: -------------------------------------------------------------------------------- 1 | from .eel import * 2 | -------------------------------------------------------------------------------- /templates/base/py/functions/eel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/py/functions/eel.py -------------------------------------------------------------------------------- /templates/base/py/models/EelExposer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/py/models/EelExposer.py -------------------------------------------------------------------------------- /templates/base/py/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/py/models/__init__.py -------------------------------------------------------------------------------- /templates/base/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/requirements.txt -------------------------------------------------------------------------------- /templates/base/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/src/app.d.ts -------------------------------------------------------------------------------- /templates/base/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/src/app.html -------------------------------------------------------------------------------- /templates/base/src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/src/index.test.ts -------------------------------------------------------------------------------- /templates/base/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/src/routes/+layout.svelte -------------------------------------------------------------------------------- /templates/base/src/routes/+layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/src/routes/+layout.ts -------------------------------------------------------------------------------- /templates/base/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/src/routes/+page.svelte -------------------------------------------------------------------------------- /templates/base/src/routes/app/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/src/routes/app/+page.svelte -------------------------------------------------------------------------------- /templates/base/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/static/favicon.png -------------------------------------------------------------------------------- /templates/base/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/svelte.config.js -------------------------------------------------------------------------------- /templates/base/tests/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/tests/test.ts -------------------------------------------------------------------------------- /templates/base/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/tsconfig.json -------------------------------------------------------------------------------- /templates/base/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiamTang/create-sveltekit-eel-app/HEAD/templates/base/vite.config.ts --------------------------------------------------------------------------------