Few weeks back only, I came to know about LESS CSS. And it is exactly what I was thinking should be available while writing css code.
Now I am very eager to use it and want to apply this in production scenario, but there is a catch. To use LESS CSS, you have two options:
1. Include less.js in your web pages.
2. Precompile LESS files and then use.
First option I can not afford, because for that I need to use less.js of size upto 43 KB. This adda extra load when I am already using Jquery.
Second option looks promising, but the problem is, to code in production you can not compile your LESS every time to test it against changes. It should be seemless experience like what I do when i code CSS directly. I should write LESS and immediately it should reflect on pages.
So can anybody help me in setting up for this kind of workflow?
Any suggestions of other similar frameworks is appreciated.