node.js: cannot find module 'request'

后端 未结 8 1823
再見小時候
再見小時候 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:44

    if some module you cant find, try with Static URI, for example:

    var Mustache = require("/media/fabio/Datos/Express/2_required_a_module/node_modules/mustache/mustache.js");
    

    This example, run on Ubuntu Gnome 16.04 of 64 bits, node -v: v4.2.6, npm: 3.5.2 Refer to: Blog of Ben Nadel

提交回复
热议问题