Error: Cannot find module 'connect'

后端 未结 8 1676
孤街浪徒
孤街浪徒 2021-02-19 21:27

It appears that this simple app can\'t find the \'connect\' module after I just installed it in the file directory.

var connect = require (\'connec         


        
8条回答
  •  清歌不尽
    2021-02-19 21:41

    you can use the following command, this might happen if you forget to install the connect serve-static module or installed it incorrectly.

    $ npm install connect serve-static
    

提交回复
热议问题