A minimal typescript Sveltekit tailwind scaffold starter
src
┣ assets
┣ components
┃ ┗ Navbar.svelte
┣ routes
┃ ┣ api
┃ ┣ __error.svelte
┃ ┣ __layout.svelte
┃ ┗ index.svelte
┣ stores
┣ app.css
┣ app.d.ts
┗ app.html
$ git clone [email protected]:brysonbw/sveltekit-tailwind-scaffold.git
$ cd sveltekit-tailwind-scaffold
$ rm -fr .git
$ npm install # or pnpm install or yarn install
Once you've created a project and installed dependencies with npm install
(or pnpm install
or yarn
), 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.
Sveltekit is still in beta at the this current time. So to keep up-to-date check for updates (if I don't update package dependencies from time to time):
# check if any (or, specific) installed packages are currently outdated -> output list of outdated dependencies or none if no update required
$ npm outdated
# update a specific package
$ npm update <package_name>
# update all dependencies
$ npm update
npm init svelte@next
& npx svelte-add@latest tailwindcss
You can use this scaffold or create a sveltekit project this way. It's what I normally do and I just added the files and directories I usually start off with using npm init svelte@next & npx svelte-add@latest tailwindcss for this scaffold - either or is fine :)
$ npm init svelte@next
# add tailwind css
$ npx svelte-add@latest tailwindcss
$ npm install # or pnpm install or yarn install
You can add other integrations to your svelte/sveltekit projects besides tailwind with npx svelte-add
.