I want to find where is my node.js in ubuntu linux system, the command: which node gives me the path of /usr/bin/node, but when I go to that folder, there i
In order to find the installation path write the below command in the terminal:
which node
If it doesn't succeed, try this one:
which nodejs
Same thing for finding npm installation path:
which npm
If you are on Windows, write where instead of which
where
which
Hope, it helps :)