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
Given you have installed node on your system, install Express locally for your project using the following for Windows:
npm install express
or
npm install express --save
You might give it global access by using:
npm install -g express --save