Hi,
I have finished to code my website using lesscss
client side and now want to compile less
so I have donwloaded node.js
. My website is running on localhost and I want first to know:
- where I have to install node.js
- what I have to do next ( commands lines tools, commands lines etc. ).
If someone can help me because I'm a newbie in this field.
Thanks.
it's not mentioned what to do after installing node.js and installing less compiler on your node.
Go to your folder where you are hosting your project locally and then type styles. less styles.css. This should initiate the conversion from less to CSS at the node command prompt.
You can install the LESS compiler directly from
npm
.node.js
. Go to this page and download the installer for your platform.If you're on Windows, download the
.msi
; if you are on OSX, download the.pkg
file. Whenever possible, download the 64-bit version (unless your system is running only 32-bit hardware and software). If you are on Linux and you want to use package managers, see this page.node.js
installed, you should also havenpm
, which isnode.js
Package Manager. You can open a terminal/console and runnpm -v
to make sure everything is installed correctly.Eventually, you can install the LESS compiler by simply executing:
(note: on OSX and Linux you may need to run this with sudo:
sudo npm install -g less
).The LESS compiler will then be available as the
lessc
command. See examples here.PS: Some GUIs also exist for simplifying working with
lessc
. Google "less gui windows/mac/linux" to see many results, like this one for Mac.