Node.js Error: Cannot find module express

前端 未结 15 1486
情话喂你
情话喂你 2020-12-22 18:56

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         


        
15条回答
  •  情话喂你
    2020-12-22 19:19

    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
    

提交回复
热议问题