我正在尝试在MacOSX上将Ethereum Web3.js与 Node 6.11.1一起使用

我使用以下命令安装了web3:



然后我启动这个-显然-简单的 Node 命令:



好吧,它返回以下错误:

module.js:471
    throw err;
    ^

Error: Cannot find module 'web3-requestManager'
    at Function.Module._resolveFilename (module.js:469:15)
    at Function.Module._load (module.js:417:25)
    at Module.require (module.js:497:17)
    at require (internal/module.js:20:19)
    at Object.<anonymous> (/Users/fremente/Dropbox/Influx Design/Web htdocs/ethereum/node_modules/web3/packages/web3-core/src/index.js:26:22)
    at Module._compile (module.js:570:32)
    at Object.Module._extensions..js (module.js:579:10)
    at Module.load (module.js:487:32)
    at tryModuleLoad (module.js:446:12)
    at Function.Module._load (module.js:438:3)

它似乎需要一些未随软件包一起安装的模块(例如'web3-requestManager')。

这是我的package.json
{
  "name": "ethereum",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "dependencies": {
    "ethereumjs-testrpc": "^4.0.1",
    "solc": "^0.4.13",
    "web3": "^1.0.0-beta2"
  },
  "devDependencies": {},
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "",
  "license": "ISC"
}

任何想法?难道我做错了什么?

最佳答案

问题来自使用web3的beta版本,该版本目前尚不稳定,目前正在大量开发中,您可以选择以下两种方法之一:

  • 使用我认为稳定的版本0.23或类似的
  • 或手动安装所有需要的依赖项,我不建议使用此解决方案来获得稳定的dapp,因为当前情况真的很不稳定
  • 关于javascript - 以太坊Web3.js返回 "Cannot find module ' web3-requestManager'“,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45426222/

    10-12 00:54