I have downloaded windows binary of nodejs. How can I install and use npm (Node package manager)?

link|improve this question

72% accept rate
The windows binary is 0.5.x, which is the unstable version of node.js. I recommend against running this in production, however it's usable for development. You may want to wait for 0.6 (soon!) before you run node.js in windows on production. – Raynos Sep 5 '11 at 10:14
feedback

6 Answers

up vote 4 down vote accepted

Installing on Windows -- Experimental worked for me.

link|improve this answer
+1 Thank your for update! – TN. Nov 7 '11 at 14:55
2  
If it helps... if you get permissions errors.I found by default the window 0.6 msi installer, installs to program files, which on Vista is only writeable by an admin. The way around this is when you need to run the step: "node cli.js install npm -gf". Run cmd.exe as an adminstrator. The only thing I'm finding is that to install anything via npm I have to run as adminstrator. So I'm wondering whether I should of installed node to somewhere else.... I'm still experimenting. – Alex Key Nov 15 '11 at 21:51
Following those instructions I got this error: Cloning into node_modules/abbrev... error: error setting certificate verify locations: CAfile: C:\msysgit/bin/curl-ca-bundle.crt CApath: none while accessing https://github.com/isaacs/abbrev-js.git/info/refs fatal: HTTP request failed Clone of 'https://github.com/isaacs/abbrev-js.git' into submodule path 'node_mod ules/abbrev' failed – Jonas Nov 29 '11 at 19:19
feedback

The current windows installer from nodejs.org as of v0.6.11 (2012-02-20) will install NPM along with NodeJS.

NOTE: the install path is "Program Files (x86)" in 64-bit windows. Also, the installer does attempt to add the path to your environment variables. The path it adds needs to be quoted (bug in the current installer) since it contains a space.

link|improve this answer
As of Feb 25, that bug seems to be fixed; I can run npm from %path% (either that or iisnode fixed it for me) – Dan Davies Brackett Feb 26 at 4:47
feedback

You currently can not. It is being worked on.

npm doesn't work on the windows native build yet. There are several blockers. Stay tuned.

and

Everyone knows how important this is. It'll be a few months. Please be patient, or help fix the things that don't work.

  1. child_process support
  2. tar/gzip dependency (probably just going to have to have windows users install these)
  3. .bat files for bins instead of symlinks.

However, someone does list an alternative in the thread, ryppi. It runs on Python, and has a minimal feature set, but it may get the job done for you.

[Update] It looks like there is a .bat file in the projects bin directory, but I'm not sure how it works or if it's meant for end-user consumption yet (there's a fixed path inside it).

link|improve this answer
Btw. the ticket is closed. – TN. Sep 4 '11 at 20:13
Yeah, I noticed that. I'm not sure if it's closed because (a) the person who opened the issue is satisfied with the answer or because (b) the work to make npm work on native Windows builds is actually done. Either way, there's no documentation in the readme about running it on Windows, and the batch file in the source repo looks fishy... – Brandon Tilley Sep 5 '11 at 2:21
2  
isaacs mentioned he expects full npm windows support to be ready by christmas. – Raynos Sep 5 '11 at 10:12
feedback

I am running node.js on Windows with npm. The trick is simply use cygwin. I followed the howto under https://github.com/joyent/node/wiki/Building-node.js-on-Cygwin-(Windows) . But make sure that you use version 0.4.11 of nodejs or npm will fail!

link|improve this answer
cygwin should never be the answer. It's the wrong way to solve these problems. – Troy Howard Mar 1 at 7:13
With node 0.6 you can use node easily under windows, but many node modules that depend on binaries don't support windows and then you come again to the point where you need something like an unix environment. – malte Mar 2 at 8:47
feedback

I just installed latest version of node (0.6.12) in Windows 7 using msi (node-v0.6.12.msi).

npm is already shipped with it, no need to include it separately.

I was facing permission issue while running npm (npm install mysql), from the path where my nodejs resided, i.e. C:\Program Files (x86)\nodejs

Then I followed below steps:

1) Added C:\Program Files (x86)\nodejs\npm in environment variables - Path system variable.

2) went back to only C:\ in command prompt and gave the command - npm install mysql - and voila! it worked..

Hope this helps.

link|improve this answer
feedback

In case you couldn't wait for the v0.6 for a working npm, you may try ryppi.

I was able to install node libraries using ryppi, a python script. You may go though the usage function to check how to use the script.

More likely, you might have to tweak the script to target the node_module folder since the current implementation of the script looks for the relative location of the said folder. In my case, I've changed the path to absolute location of the node_module.

However, you need to have python install to run the script. Also, you need to know some basic python syntax to tweak the script to suit your need.

I hope this helps.

link|improve this answer
1  
What you mean about couldn't wait for the 0.6? 0.6 is out! :) – sanbor Nov 6 '11 at 3:16
@sanbor Oh, I see. Thanks for the post. I'll upgrade mine shortly. – OnesimusUnbound Nov 8 '11 at 8:52
feedback

Your Answer

 
or
required, but never shown

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