Skip to content
Advertisement

Running npm globally installed packages

Can someone please explain how do node’s globally installed behave. It is really confusing me. If I install a package (with executables) such as http-serverglobally I can run it with:

JavaScript

But if I do

JavaScript

I get

JavaScript

I suspect my ternpackage in emacs is trying to run it with node hence breaking. Why is this happening? Why can’t node find the path to it’s own modules?

Advertisement

Answer

JavaScript

ooh same error

this is because i first command you are actually trying to access a global variable but in second you are some where in your file hierarchy and from there you are saying that you want to access that package so you are wrong if you want to execute that global package try

JavaScript

then go to that directory and find the file package.json and then open it and find the “main” property and there you get a file name then type

JavaScript

your file will be executed

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement