Open wilburluce opened 9 years ago
Hello willburluce, you can customize cmd in Options>Miscellaneous>Node.js
I have the same problem..I can navigate to Preferences>Miscellaneous>Node.js..but don't know what should i do after that..if you can show us in screen shots that will be great.
I ran into the same issue running OSX 10.10.4 and using nvm
. Apparently the PATH for Netbeans does not include node. This isn't all that surprising: GUI apps don't always have access to the same PATH as terminal applications which generally source .bash_profile/.bashrc
. See https://github.com/creationix/nvm/issues/381 for relevant discussion.
Re: @wilburluce @raparlasiva Why don't use full path to the node bin? Customized run command can look like this:
cd ${workingdir};
/usr/local/bin/node ${selectedfile};
..when i right click on a js file and select "run with node". I have node in /usr/local/bin and symlink to /usr/bin..