Skip to content

Instantly share code, notes, and snippets.

@techyak
Created March 16, 2011 04:37
Show Gist options
  • Save techyak/872022 to your computer and use it in GitHub Desktop.
Save techyak/872022 to your computer and use it in GitHub Desktop.
the alias that I'm using to watch node.js/coffeescript/compass at the same time
function nodewatch() {
find . | grep coffee$ | xargs coffee -cwl &
if [ $1 ]
then
nodemon $1.js &
else
nodemon app.js &
fi
compass watch public/ &
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment