https://github.com/lawrencewarren/take-counter
https://github.com/lawrencewarren/take-counter
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/lawrencewarren/take-counter
- Owner: LawrenceWarren
- Created: 2025-07-21T19:09:35.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-21T22:12:50.000Z (about 1 year ago)
- Last Synced: 2025-07-21T23:27:29.795Z (about 1 year ago)
- Language: Svelte
- Size: 61.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sveltekit-electron
An Electron application with Sveltekit, TypeScript, and tailwindcss v4
## Notes
- Uses svelte static adapter to generate static HTML/JS files
- Uses electron-serve to serve the static web assets as sveltekit does not play nice with file:// urls
- uses ESM imports where possible
## Project Setup
### Install
```bash
$ pnpm install
```
### Development
```bash
$ pnpm dev
```
### Build
Note: only been tested on Macos without notarization
```bash
# For windows
$ pnpm build:win
# For macOS
$ pnpm build:mac
# For Linux
$ pnpm build:linux
```