How to configure Jade file watcher in Webstorm?

I installed the Jade file watcher in the following path in WebStorm. However, it does not create HTML files.

How can I convert a Jade file to an HTML file using WebStorm 9.0.3?

+7
webstorm pug file-watcher
source share
1 answer

You have entered the wrong path to Jade in the Program field. Do you have Jade installed globally? Run 'npm install jade -g' , then check the jade in the system terminal by running 'jade <your jade file>.jade' . Then specify the path to the installed jade script as a "Program" in your file watcher

+13
source share

All Articles