Node.js Error: Cannot find module express

前端 未结 15 1532
情话喂你
情话喂你 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:16

    For me it worked when installed express locally with --save option as follow:

    $ npm install express --save
    

提交回复
热议问题