Setting npm up as the root user is straighforward and workds. Except you have to run npm commands as root (not recommended). So I thought I'd try setting it up as a non-root user.

According to npm documentation, a non-root user without root access can set up npm by:

  1. creating a .npmrc file with root, binroot, and manroot pointing to folders that the user owns.
  2. Then running the install script.

OK. Install was fine.

But node can't see the packages provided by npm.

So how do I make node aware of the packages provided by npm? (I didn't have to do anything when I previously installed npm as root). I can set require.paths within node, or set the NODE_PATH environment variable, but to what?

Thanks.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Through a little exploration, it seems you can either:

  1. set your NODE_PATH to whatever npm's root directory is, or
  2. while in node, invoke require.paths.push('path_to_npm_root')
link|improve this answer
And if you're trying to debug this from the repl, see github.com/ry/node/issues/closed#issue/303 – keturn Sep 27 '10 at 18:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.