npm is the most popular package manager for Node.js, the asynchronous I/O framework that uses Google's V8 JavaScript engine. It can be used to install and publish CommonJS modules. It manages dependencies using the CouchDB NoSQL database management system hosted by Couchbase. See: http://nodejs.org/ ...

learn more… | top users | synonyms

17
votes
6answers
1k views

NPM on Cygwin: unexpected end of file

I am trying to use NPM on cygwin, but keep getting following errors: ERR! tar "-mvxpf" "-" "--no-same-owner" "-C" "/tmp/npm-1305893882865/1305893885765-0.008730818051844835/contents/___package.npm" ...
16
votes
3answers
5k views

Node.js NPM is not installing module in the default path

I recently installed Node.js and npm module on OSX and have a problem with the settings I think: npm install [MODULE] is not installing the node.js module to the default path which is ...
15
votes
5answers
4k views

Using npm to install or update required packages just like bundler for rubygems

I love Bundler, it's great at dependency management. I love npm, installing node packages is easy! I have a nodejs app and would love to be able to specify my apps dependencies and easily install / ...
11
votes
0answers
179 views

node.js and npm has no network access in windows 7 64 bit ultimate

So to start with, I already found the similar question: Basic Node.js examples not working on Windows 7 which seems to be the same issue but there is no solution. I have also found forum posts online ...
11
votes
7answers
3k views

Express module not found when installed with NPM

When I try to run the app.js file created by express, I get the following error: $ node app.js node.js:134 throw e; // process.nextTick error, or 'error' event on first tick ^ Error: ...
9
votes
5answers
4k views

How to use npm with node.exe?

I have downloaded windows binary of nodejs. How can I install and use npm (Node package manager)?
9
votes
1answer
3k views

how/why does npm recommend not running as root?

in short... First of all, why does npm suggest that it should only run as non-root? I highly disbelieve that every other package manager (apt, yum, gem, pacman) is wrong for requiring sudo. Second, ...
8
votes
1answer
4k views

How can I update NodeJS and Npm for the next versions?

I just installed nodejs and npm (for additional modules). My question is... How could I update nodejs and the modules I'm using to the last versions? NPM could do it? or do i have to remove and ...
6
votes
3answers
2k views

set node.js REPL module paths

I can't figure out how to add paths to my Node.js installation (v.0.4.7 on Mac OS X). I've installed npm, and it installs globally to /usr/local/lib/node_modules. However, when I installed npm, it ...
6
votes
1answer
988 views

How to install a node.js module without using npm?

There are quite a few modules which are listed here but are not published with the npm-registry. These modules can't be installed using npm. What is the correct way to install these nodejs modules ...
5
votes
2answers
1k views

express command not found in bash after installing it with npm

just installed new ubuntu vm to test around with node installed things in this order: node mongodb-server npm express mongoose now, trying to create a new app i noticed express cannot be used in ...
5
votes
3answers
8k views

Node.js - cannot find module

I'm using Node Boilerplate and it all worked fine until I decided create another project on top of it(in another dir). Now I have exactly the same code base(this project AS IS) in two different ...
5
votes
1answer
1k views

How do you set up npm (node package manager) without root access?

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 ...
4
votes
3answers
51 views

NodeJS and NPM : problems following recommendation to check modules into git

I'm having problems following the 'official' recommendation to check in all external dependencies into git (article http://www.mikealrogers.com/posts/nodemodules-in-git.html linked fron FAQ) How do ...
4
votes
2answers
136 views

What MySQL driver for Node.js works on Windows?

I would like to use MySQL with Node.js on Windows. I have tried to use node-db-mysql, but it looks like it doesn't support Windows. Is there any other MySQL driver for Node.js that works on Windows?
4
votes
1answer
325 views

How can I handle Node.js dependencies in a project on git with NPM?

I've run into this scenario quite a few times and still haven't found the answer. I'm starting a new Node.js project, and this project will be dependent on some other libraries. For sake of ...
4
votes
1answer
1k views

Installing NPM on OSX Lion

I am trying to install NPM on OSX Lion, I run this command: curl http://npmjs.org/install.sh | sudo sh After asking to type "yes" and I do I get this: All clean! ! [ -d .git ] || git submodule ...
4
votes
3answers
2k views

Node.js : NPM Install Fails

I get this error if I run curl http://npmjs.org/install.sh | sh even with sudo. cirk@cirk-Parallels-Virtual-Platform:~$ curl http://npmjs.org/install.sh | sh % Total % Received % Xferd ...
4
votes
4answers
282 views

Unattended install of node.js and npm, but without building it from source

Is there a way to install node.js and npm in an unattended way (with a shell script) without building it from source? I have an array of servers that scales automatically based on server load, but ...
4
votes
1answer
393 views

NPM registry alternative to http://registry.npmjs.org/npm

unfortunately http://registry.npmjs.org/npm is down resulting in $ npm install mime npm ERR! Error: ucs {bad_utf8_character_code}: mime npm ERR! at IncomingMessage.<anonymous> ...
4
votes
2answers
2k views

NPM install issues Ubuntu 11.04 [closed]

installing a fresh node with the following commands sudo apt-get install git-core curl build-essential openssl libssl-dev git clone https://github.com/joyent/node.git && cd node ./configure ...
3
votes
3answers
81 views

Best workflow using node.js npm and git

I am about to do a large project with node.js and currently try sort a few things out. In earlier node projects I had an extra folder for all node modules I used. This folder was ignored by git and I ...
3
votes
0answers
68 views

Node.js v8-profiler module won't install

I'm trying to debug a memory leak in a Node.js application but cannot install the v8-profiler module via npm: npm install v8-profiler The response (shortened to the error section) - you can see the ...
3
votes
1answer
55 views

Is there a module for getting user input from the command line in node.js?

First of all: I don't mean parsing arguments and options from the process.argv array, but prompting the user and handling input/output. I've looked through the Node.js official module list without ...
3
votes
0answers
299 views

npm fails on windows

I've installed the latest node.js msi on windows vista. I try to use npm but always get the error "failed to fetch from registry" in \lib\utils\npm-registry-client\get.js:139:12 with any package. I ...
3
votes
0answers
96 views

How to include options passed to npm installer when including dependencies in package.json

I am very new to node.js so please pardon my ignorance on a simple question. I am adding dependencies to package.json for a node.js application and am wondering if it's possible to specify command ...
3
votes
2answers
481 views

Install Express-on-Railway JS error

I have this error when I try to install Express-on-Railway JS framework, please help: https://github.com/1602/express-on-railway npm ERR! error installing railway@0.1.7-8 Error: Unsupported npm ERR! ...
3
votes
1answer
762 views

install dependencies globally and locally - package.json

Using npm we can install the modules globally using -g option. How can we do this in the package.json file? Suppose, these are my dependencies in package.json file "dependencies": { "mongoose": ...
3
votes
3answers
335 views

Emacs JS mode for npm style

Is there a JS mode for emacs which is pretty much compatible with npm style? So far I'm working with a modification of js2-mode with native intending features overridden and replaced with 'tab key = ...
3
votes
2answers
1k views

Configuring a Node JS App to Use NPM

I have a really simple Node JS app and I'd like to include the Express JS framework. I've installed Express with NPM (and NPM with Homebrew) without any errors using: brew install npm npm install ...
3
votes
2answers
715 views

Including other libraries / files / plugins with nodejs and NPM

I'm using OSX 10.5 and playing around with Nodejs. I've managed to install npm and used it to install a couple of plugins. Well at least the installation says it has worked fine but when I try and ...
2
votes
2answers
22 views

Can I npm link on a nodejitsu instance?

I'm trying to use a lib that I need to install and then link with npm. I don't see any clear path for me to access my server this way using the jitsu cli. How would I go about doing this?
2
votes
2answers
46 views

Why do I see “define not defined” when running a Mocha test with RequireJS?

I am trying to understand how to develop stand-alone Javascript code. I want to write Javscript code with tests and modules, running from the command line. So I have installed node.js and npm along ...
2
votes
1answer
50 views

NPM Won't Run After Upgrade

I've been using node .4x and npm, and decided to upgrade to .67. Oh boy. I'm on Mac OSX--new to it. When I type npm I get -bash: /usr/bin/npm: No such file or directory echo $PATH shows a lot ...
2
votes
3answers
47 views

setting up npm package directories

I've put together a little library called Mockery (edit: now called pretendr because there's another project called mockery), and I want to put it in npm. The library has directories called lib and ...
2
votes
1answer
159 views

Node.js re-usable code server-client

I'm doing some R&D on Node.js and so far I like it, I'm just curious on how I could re-use code in order to have some shared code between client and server. A good example of that need would be ...
2
votes
3answers
78 views

Keeping node.js running

During development it would be great to have node.js restarted automatically when changes occur in the applications directory. When the application is in production, node could be start just like ...
2
votes
1answer
293 views

NPM and jsdom Error Loading

Getting into the world of node.js. Basically just starting out. I have installed node and got some things working. From my understanding I need to install the module jsdom to get jQuery working. ...
2
votes
2answers
69 views

Is there any documentation on the package.json file?

Here's an instance of the package.json file that express.js generates { "name": "packagename", "version": "0.0.1", "private": true, "dependencies": { "express": "2.5.5", ...
2
votes
0answers
32 views

What is the “-d” in “npm -d install”?

I've seen some posts that refer to running npm with a -d argument. For example, this issue refers to doing npm -d install coffee-script. There are a few other pages that also refer to this syntax, ...
2
votes
0answers
118 views

Installing ender.js on windows - npm WARN gzip@0.1.0

I need help with Ender-js installation. Trying to set it up on my machine (Windows XP). First I've installed node-js v0.6.6 & downloaded (&unzipped) the latest NPM - 1.1.0-beta-7. As per ...
2
votes
1answer
281 views

npm install jquery fails

Tried reading this stacktrace thoroughly but it didn't make me any smarter. Ideas? sudo npm install jquery npm ERR! registry error parsing json npm ERR! error installing jquery@1.6.3 SyntaxError: ...
2
votes
2answers
323 views

Compiling coffeescript on npm install

I'm building an app consisting of private npm repos built in CoffeeScript. To keep deployment language-agnostic, and allow each app to specify its version of CoffeeScript, I'm including CoffeeScript ...
2
votes
1answer
69 views

Use an alternate dependency list for Node.JS + NPM

Is it possible to have two package.json files for a single NodeJS project? In a project I'm working on, there is an optional and experimental feature which requires some node packages of its own. For ...
2
votes
2answers
140 views

How to serve node_module files to the client

I'm trying to figure out of if there is a feature or convention I'm missing for referencing a js file from a node_module in the client html via script. For example, I have underscore installed via npm ...
2
votes
1answer
404 views

Permission issues installing npm on OSX

I'm having issues installing the node package manager "npm". On the website it prompts you to do a 1 line install as follows... curl http://npmjs.org/install.sh | sh This spits out the following ...
2
votes
1answer
189 views

How do you define an npm dependency nested in a git repo?

If I have an npm dependency that is nested in a git repo, how would I define that dependency in the package.json file? Say the git repo is at git://github.com/user/myrepo.git on the dev branch, at ...
2
votes
1answer
92 views

CouchDB filtered replication: Amend doc_id after first complete replication

NPM's (node package manager) registry uses CouchDB to store meta information and tarballs of packages at a CouchDB instance at http://registry.npmjs.org/registry .. I use the following replication ...
2
votes
2answers
47 views

node - restart server after editing specific files

I'd like to automatically restart the server after particular files are edited. Is there anything I can install to help me do that? - or will I need to watch the folder run a script accordingly. Any ...
2
votes
1answer
264 views

NPM basics with nave and Node.js

I recently installed node.js and was told that express was the way to go for routing and getting set up with web application development. I installed the lastest version of node which apparently is ...

1 2 3 4 5