Error: Cannot find module 'connect'

后端 未结 8 1808
孤街浪徒
孤街浪徒 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:50

    The connect module either is not installed or installed partially so install it firstly and later on try to start the server again

      npm install connect
    

提交回复
热议问题