A collection of handy developer utilities built with Svelte 5 and SvelteKit.
# Install dependencies
npm install
# Start development server
npm run dev
| Command | Description |
|---|---|
npm run dev | Start development server |
npm run build | Build for production |
npm run preview | Preview production build |
npm run check | Run TypeScript checks |
npm run db:push | Push database schema |
npm run db:generate | Generate database migrations |
npm run db:studio | Open Drizzle Studio |
npm run fmt | Format code with Biome |
src/
├── routes/
│ ├── (app)/ # Protected routes
│ │ ├── base64/ # Base64 encoder/decoder
│ │ ├── cookies/ # Cookie analysis tool
│ │ ├── snippets/ # Code snippet manager
│ │ └── strings/ # String utilities
│ ├── auth/ # Authentication routes
│ └── +page.svelte # Home page
└── lib/
├── components/ # Reusable UI components
└── server/ # Server-side code (db, auth)
51 commits
Svelte
78.6%
TypeScript
19.7%
CSS
1.5%
A collection of handy developer utilities built with Svelte 5 and SvelteKit.
# Install dependencies
npm install
# Start development server
npm run dev
| Command | Description |
|---|---|
npm run dev | Start development server |
npm run build | Build for production |
npm run preview | Preview production build |
npm run check | Run TypeScript checks |
npm run db:push | Push database schema |
npm run db:generate | Generate database migrations |
npm run db:studio | Open Drizzle Studio |
npm run fmt | Format code with Biome |
src/
├── routes/
│ ├── (app)/ # Protected routes
│ │ ├── base64/ # Base64 encoder/decoder
│ │ ├── cookies/ # Cookie analysis tool
│ │ ├── snippets/ # Code snippet manager
│ │ └── strings/ # String utilities
│ ├── auth/ # Authentication routes
│ └── +page.svelte # Home page
└── lib/
├── components/ # Reusable UI components
└── server/ # Server-side code (db, auth)
51 commits
Svelte
78.6%
TypeScript
19.7%
CSS
1.5%