When running nodejs application on ubuntu
this is because the package manager named the application nodejs instead of node
make a symlink from nodejs to node and it should work
sudo ln -s /usr/bin/nodejs /usr/bin/node
Bruce Ng's software development blog
An archive of solutions of programming problems I have faced in my career
When running nodejs application on ubuntu
this is because the package manager named the application nodejs instead of node
make a symlink from nodejs to node and it should work
sudo ln -s /usr/bin/nodejs /usr/bin/node