I have downloaded windows binary of nodejs. How can I install and use npm (Node package manager)?
feedback
|
|
Installing on Windows -- Experimental worked for me. | |||||||||
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. | |||
feedback
|
|
You currently can not. It is being worked on.
and
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 | |||||||||
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! | |||||
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 2) went back to only Hope this helps. | |||
|
feedback
|
|
In case you couldn't wait for the v0.6 for a working npm, you may try 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 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. | |||||||
feedback
|