Get started with Tailwick

Tailwick works by scanning all of your svelte files, components, and any other templates for class names, generating the corresponding styles and then writing them to a static CSS file.

It's fast, flexible, and reliable — with zero-runtime.

Installation
1
Install Node (Recommended Node.js version: >18)

Make sure to have the Node.js installed & running in your computer. If you already have installed Node on your computer, you can skip this step if your existing node version is greater than 18.

2
This would install all the required dependencies in the node_modules folder.
npm install

or

npm i
3
Runs the project locally, starts the development server and watches for any changes in your code, including your Svelte, sass, etc. The development server is accessible at http://localhost:3000.
npm run dev
4
Generates a build with all the production files.
npm run build