1

我一直在尝试设置我的 dapp,但没有找到任何可以彻底解释它的资源。我想使用 Geth 和 web3 将我的应用程序连接到以太坊。到目前为止,我的 index.js 文件如下所示:

var Web3 = require('web3')

 if (typeof web3 !== 'undefined') {
   web3 = new Web3(web3.currentProvider)
 } else {
   web3 = new Web3(new 
   Web3.providers.HttpProvider('http://localhost:8545'))
 }

我输入:

geth --testnet --rpc

在我的命令行中启动节点。我有一个运行 geth 并同时编译 index.js 的 npm 脚本。有什么我想念的吗?我还有一个问题。使用 ES6 模块 (import ... from ...) 导入 web3 的正确方法是什么?提前谢谢你!

4

1 回答 1

1

我推荐这个命令

geth --rpc --rpcaddr 0.0.0.0 --rpcport 8545 --rpccorsdomain "*" console

geth有很多选择,所以你应该阅读geth文档。

于 2018-01-18T07:16:31.870 回答