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 express

And my server.js file contains only:

var express = require('express');

When I run my application I get Error: Cannot find module 'express'. How can I tell my Node application to include the library?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You need to tell node where your libs are.

extract from http://nodejs.org/api.html

require.paths
An array of search paths for require(). This array can be modified to add custom paths.

Example: add a new path to the beginning of the search list

require.paths.unshift('/usr/local/node');
link|improve this answer
Does a solution exist that supports deploying specifically NPM packaged projects? I noticed that NPM supports a 'bundle' command but I couldn't figure out how to use it... – Kevin Sylvestre Feb 2 '11 at 3:45
Can't help with that I'm afraid, I haven't tried bundle out. Lots of projects, seem to bundle their deps in and require those ones specifically. – bdargan Feb 2 '11 at 4:29
feedback

Here's a walkthrough of using npm's bundle command:

http://intridea.com/2010/8/24/using-npm-with-heroku-node-js?blog=company

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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