A powerful fork of create-svelte
with added features and options. Just run...
npm create skittle@latest
...and follow the prompts.
Integration | Description | Status |
---|---|---|
Tailwind CSS | Rapidly build modern websites without ever leaving your HTML | ✅ |
Supabase | Open source Firebase alternative. Instant Authentication, APIs, Edge Functions, Realtime subscriptions, Storage, etc. | ⏳ |
- ✅: Integrated
- ⏳: Planned
More coming soon.
You can also use create-skittle
programmatically:
import { create } from 'create-skittle';
await create('my-new-app', {
name: 'my-new-app',
template: 'default', // or 'skeleton' or 'skeletonlib'
types: 'checkjs', // or 'typescript' or null;
prettier: false,
eslint: false,
tailwindcss: false,
playwright: false,
vitest: false
});
checkjs
means your project will use TypeScript to typecheck JavaScript via JSDoc comments.
MIT.