友友们是否安装web3js始终安装不下来呀,安装后是不是想是否能成功连接私链呢,接下来就解决了各位小伙伴的烦恼
安装方法sudo npm install web3 -save
解决方法
若出错,首先可以更换指令,使用
npm install web3@^0.20.0
若是网络问题,可尝试进行代理切换即镜像切换
//查看当前源
npm config get registry
//切换至淘宝源
npm config set registry=http://registry.npm.taobao.org/
//切换华为源
npm config set registry=https://mirrors.huaweicloud.com/repository/npm/
测试web3是否安装成功
新建一个js文件——》》test.js
向test.js内添加测试代码
var Web3=require('web3');
console.log("test");
var web3=new Web3(new Web3.providers.HttpProvider('http://localhost:8545'));
console.log(web3.version);
web3.eth.getAccounts().then(console.log);
运行在test.js目录下运行test.js
!!!运行前一定要先启动ganache
node test.js
运行结果运行成功结果如下,即表示web3j安装成功,并且能够成功连接ganache私链
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)