Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
December 17, 2021 07:30 pm GMT

Tailwind CSS Standalone CLI: Use Tailwind CSS without Node.js

Tailwind just released a standalone CLI in self-contained executable, no Node.js or npm required.

You get all the power of the standard npm-distributed CLI in a convenient, portable package no dependencies required.

Get started

Download the executable for your platform from the latest release.

Copy it to the root directory of your project.

Rename the executable "tailwindcss" .

Now you can use it just like the npm-distributed CLI tool:

# Create a tailwind.config.js file./tailwindcss init# Start a watcher./tailwindcss -i input.css -o output.css --watch# Compile and minify your CSS for production./tailwindcss -i input.css -o output.css --minify

It comes bundled with the latest versions of all of tailwind's first-party plugins, so if you want to use them in your project, just require them in your tailwind.config.js file like you would in a Node-based project:

module.exports = {  // ...  plugins: [    require('@tailwindcss/forms'),    require('@tailwindcss/typography'),  ]}

Refrences

Standalone CLI: Use Tailwind CSS without Node.js - Adam Wathan


Original Link: https://dev.to/kachidk/tailwind-standalone-cli-use-tailwind-css-without-nodejs-2bfn

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To