Storybook is a powerful tool for component driven UI development and testing, but it requires a mountain of dependencies and its Svelte integration is still a second class citizen.
Svelte Tale reimplements the core features of Storybook for any SvelteKit based project to provide the conveniences of Storybook's component driven workflow and SvelteKit's speed and lightweight developer environment.
Once you've created a project and installed dependencies with pnpm install
, start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
To create a production version of your app:
npm run build
You can preview the production build with npm run preview
.
To deploy your app, you may need to install an adapter for your target environment.