Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Friend designer of mine was compiling his LESS file manually and uploading it with Coda (Remote Site) spending lots of precious time. He asked me:

Is it possible to automatically detect file change on the Linux server and compile without delay at all?

share|improve this question

migrated from webmasters.stackexchange.com Dec 2 '12 at 17:48

3 Answers

up vote 4 down vote accepted

I have made a script and I publish the details:

  • Easy to use for designers
  • Executes LESS compiler immediately after file is saved, without consuming server resources
  • Any editor capable of remote editing will work with this solution - Code, Sublime Text, Textmate

First, you need to install "npm" on the server by typing this into the console:

sudo apt-get install npm inotify-tools
sudo npm install -g less
sudo nano /usr/local/bin/lesscwatch

Paste the following into the file:

#!/bin/bash
# Detect changes in .less file and automatically compile into .css
[ "$2" ] || { echo "Specify both .less and .css files"; exit 1; }
inotifywait . -m -e close_write | while read x op f; do.
    if [ "$f" == "$1" ]; then.
        lessc $f > $2 && echo "`date`: COMPILED";.
    fi
done

Save, exit, then execute:

sudo chmod +x /usr/local/bin/lesscwatch

You are all done. Next time you need to work with your LESS files, you will need to open terminal (Coda has a built-in), go to the folder of your file (using cd) and execute this:

lesscwatch main.less main.css

It will output information about successful compilations or errors. Enjoy.

share|improve this answer
I found on Ubuntu, I had to install the nodejs package, and modify the lessc script (/usr/local/bin/lessc) to use nodejs as the executable, instead of node. Ie, change the top line of /usr/local/bin/lessc to #!/usr/bin/env nodejs. I like this solution; thanks for posting it! – Clark Jan 7 at 17:22

I wrote a simple python script autolessc which polls a .less file and its dependencies for changes to recompile them.

Usage:

python autolessc.py <infile> <outfile>
share|improve this answer
You are using endless loop and 1 second delay. That means the file is not compiled instantly and would slow down the design process. – romaninsh Dec 3 '12 at 14:16
Pff, just lower delay to however long it takes for you to alt + tab and F5 if 1 second is too much of your time. Your script does not check your imports so you must always save your main file as well or use :wa, which is not always desirable. </nag> – Jesse the Game Dec 3 '12 at 14:35
that's how inefficiencies creep in into the software. Lower delay to 0, who cares about if the system load grows by another point of uptime. Please do feel free to extend my script, if you wish to, but it focuses on a fundamental technique and gets things compiled without no delay and without introducing CPU overhead, which is the actual point of this tip. – romaninsh Dec 3 '12 at 18:47

I have modified @romaninsh's solution so that it will recompile when any Less files in the directory are changed. I have also added an echo statement before compiling the Less files, to provide some validation that a change has been detected in case compilation takes a few seconds.

/usr/local/bin/lesscwatch:

#!/bin/bash                                                                     
# Detect changes in .less file and automatically compile into .css                 
[ "$2" ] || { echo "Specify both .less and .css files"; exit 1; }                  
inotifywait . -m -e close_write | while read x op f; do                            
    if [[ "$f" == *".less" ]]; then                                                
        echo "Change detected. Recompiling...";                                    
        lessc $1 > $2 && echo "`date`: COMPILED";                                                                                                                           
    fi                                                                             
done 

This more closely mimics the behaviour of Less.app for Mac that I am used to.

When developing with Less, I usually have a bunch of files in the /style directory of my project and compile everything down into a single .css file using overrides.

Usage example:

base.less:

@import "overrides.less";
@import "variables.less";

body {
   ...
}

The usage is the same as

lesscwatch base.less base.css
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.