Truffle

找不到模組:無法解析“./contracts/SimpleStorage.json”

  • December 9, 2018

我是solidity的新手,松露,我嘗試過react-boxTruffle我得到以下錯誤。我正在使用 Macos。

這是基本步驟

   npm install -g truffle
   truffle develop
   compile
   migrate

https://github.com/truffle-box/react-box

找不到模組:無法解析“./contracts/SimpleStorage.json”

有同樣的錯誤。node_modules 使用時似乎不包含依賴項truffle unbox react

只需安裝缺少的依賴項,錯誤就會消失:npm install bignumber.js

對我來說,這個答案解決了這個問題。特別是 tmcinerney4 的回答,他建議升級你的松露。

cd /usr/local/lib/node_modules/truffle/
yarn add solc

引用自:https://ethereum.stackexchange.com/questions/57887