Node.js Error: Cannot find module express

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

    I'm not proud sharing this, but in my case I had:

     require('express.handlebars')
    
     //and the correct form is:
     require('express-handlebars'); //Use dash instead.
    

提交回复
热议问题