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

I have a nodejs script that uses phantomjs-node to scrape a webpage. It works fine when I run from a terminal window, but not when I run from inside Webstorm via a run configuration for a Node JS application.

What could be causing the error in Webstorm?

I've already tried running the script from the terminal after commenting out the contents of .bash_profile and it still works. I've also checked the contents of process.env in another sample script and saw that the values are completely different in Webstorm vs. terminal.

The script:

var phantom = require('phantom');
phantom.create(function(ph) {
    return ph.createPage(function(page) {
        return page.open("http://www.google.com", function(status) {
            console.log("opened google? ", status);
            return page.evaluate((function() {
                return document.title;
            }), function(result) {
                console.log('Page title is ' + result);
                return ph.exit();
            });
        });
    });
});

Terminal output (works great!):

opened google?  success
Page title is Google

Webstorm console output (fails):

/usr/local/bin/node phantom.js
phantom stderr: execvp(): No such file or directory


Process finished with exit code 0
share|improve this question
1  
If you are on Mac, check this question: apple.stackexchange.com/q/51677. – CrazyCoder Jun 24 '12 at 10:19

3 Answers

up vote 8 down vote accepted

Webstorm does set a PATH variable, but it's different to the PATH variable your app gets when run in the terminal. My solution, a hack:

  1. Type node to get to the REPL
  2. Run process.env
  3. Copy the contents of the PATH value
  4. Add an environment variable to Webstorm called PATH that uses this value. It will overwrite the default PATH variable that Webstorm gives your app.

Done!

share|improve this answer
This finally helped me with Rubymine having the same issue. – forforf Jan 4 at 19:25
How are you adding the environmental variable to webstorm? – pgreen2 Jan 30 at 4:31
@pgreen2 go to the Run/Debug Configurations screen, select the Node JS config you are trying to fix, then on the right amongst the fields like 'Path to Node' and 'Node Parameters' you should see a field called 'Environment Variables'. Click the '...' button there to get you to a CRUD screen for environment variables for the config. – Trindaz Jan 30 at 6:18
@Trindaz Ahh... Right in front of my face. Thanks. – pgreen2 Jan 30 at 14:24

If you are on Mac see http://devnet.jetbrains.net/docs/DOC-1160. This document was originally written for RubyMine, but it is applicable for WebStorm too.

share|improve this answer

Sounds offhand like an interaction between working directories and paths: phantom is trying to execute something that it can find when you run it from the terminal, but not when you run it from Webstorm. Could also be a permissions problem.

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.