Get started with Tailwick

Tailwick works by scanning all of your HTML files, TypeScript 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
Make sure to have the Angular cli installed & running on your computer. Install it before start with the Angular app npm install --global @angular/cli@latest
4
This command launches the server, watches your files, and rebuilds the app as you make changes to those files. Using the --open (or use -o) option will automatically open your browser on http://localhost:4200/. This command will take some time to finsh. Please wait for it to complete.
ng serve