这里是 node.js 的新手;
我安装了它并尝试使用 w3 模块(在 Windows 上)。
我已将全局 repo 位置更改为:C:\Users\<user>\.node_modules_global
并使用以下命令安装了 web3 模块,该命令在 node_modules_global 文件夹上创建了一个新文件夹;:
npm install ethereum/web3.js --global
当我尝试跑步时
Web3 = require('web3')
它,我得到一个
Error: Cannot find module 'web3'
但是,如果我使用完整路径:
Web3 = require('C:\\Users\\<user>\\.node_modules_global\\node_modules\\web3')
有用。知道什么可能导致这个问题吗?(我已添加C:\\Users\\<user>\\.node_modules_global
到系统路径)
谢谢