Pages

Thursday, September 06, 2012

Adding 'node' link on Linux

Installing node-inpector fails on Fedora 17 since it, at some point during the installation, tries to run "node ". On Linux, node.js binary is "nodejs", not "node". So, to create "node" executable, simply link to existing binary:
ln -s /bin/nodejs /bin/node

No comments: