1. 程式人生 > >【以太坊】 【開發環境搭建】 testrpc測試環境

【以太坊】 【開發環境搭建】 testrpc測試環境

[testrpc 以太坊 區塊鏈 開發環境]

一、安裝truffle+testrpc開發和測試環境。truffle是開發環境,testrpc是測試環境。

1、安裝環境時需要git

    add-apt-repository ppa:git-core/ppa     apt-get update     apt-get install git

2、nodejs環境

    apt-get install nodejs     apt-get install npm

其中npm是nodejs的包管理器

nodejs版本升級

    npm install -g n     n stable

3、安裝truffle

npm install -g truffle truffle version

4、安裝web3的testrpc

npm install -g ethereumjs-testrpc npm install -g [email protected]

二、環境測試 1、下載 cd workspace truffle unbox webpack

2、編譯 truffle compile truffle migrate

編譯報錯,修改 truffle.js:

module.exports = {   // See   // to customize your Truffle configuration!   networks: {         development: {             host: "localhost",             port: 7545,             network_id: "*" // 匹配任何network id          }     } };

npm run dev

範例: http://localhost:8080

-------------------------------------- https://blog.csdn.net/Lian_Dao/article/details/74908778 https://blog.csdn.net/jiyilanzhou/article/details/79491665 https://ethfans.org/posts/a-gentle-introduction-to-ethereum-programming-part-1