Nodejs Cannot find module

前端 未结 5 485
南旧
南旧 2020-12-30 00:40

I\'m getting an error when trying to use any global module, exemple:

Error: Cannot find module \'express\'
    at Function.Module._resolveFilename (module.js:         


        
5条回答
  •  情深已故
    2020-12-30 01:03

    I was getting same error on Windows7/x64 and adding following in the environment variable resolved the issue:

    NODE_PATH=C:\Users\[USERNAME]\AppData\Roaming\npm\node_modules
    

    *Replace [USERNAME] with your actual system username

提交回复
热议问题