I wrote my first node.js app, but it can\'t find express library:
C:\\ChatServer\\Server>node server.js module.js:340 throw err; ^ Error: C
Check if you are not install express module, use this command:
express
npm install express
and if your node_modules directory is in another place, set NODE_PATH envirnment variable:
node_modules
NODE_PATH
set NODE_PATH=your\directory\to\node_modules;%NODE_PATH%