node.js: cannot find module 'request'

后端 未结 8 1820
再見小時候
再見小時候 2020-12-07 14:29

I installed request module, and getting the error:

module.js:340
    throw err;
          ^
Error: Cannot find module \'request\'

i\'ve read

8条回答
  •  攒了一身酷
    2020-12-07 14:31

    You should simply install request locally within your project.

    Just cd to the folder containing your js file and run

    npm install request
    

提交回复
热议问题