truffle serve 發生異常解決辦法

安裝步驟前幾步都沒有問題

mkdir demo001 # Create a folder for your new dapp
cd demo001 # Move into that folder
truffle init # Initialize a default truffle project in that folder
truffle migrate # Build, compile, & deploy the dapp
  • 1
  • 2
  • 3
  • 4

執行到下面代碼時發生錯誤

truffle serve # Host your web interface on port 8080
  • 1

錯誤異常以下:

Serving static assets in ./build on port 8080...
/usr/local/lib/node_modules/truffle/build/cli.bundled.js:115605
  return (new fsevents(path)).on('fsevent', callback).start();
          ^

TypeError: fsevents is not a constructor
    at createFSEventsInstance (/usr/local/lib/node_modules/truffle/build/cli.bundled.js:115605:11)
    at setFSEventsListener (/usr/local/lib/node_modules/truffle/build/cli.bundled.js:115659:16)
    at FSWatcher.FsEventsHandler._watchWithFsEvents (/usr/local/lib/node_modules/truffle/build/cli.bundled.js:115823:16)
    at FSWatcher.<anonymous> (/usr/local/lib/node_modules/truffle/build/cli.bundled.js:115957:25)
    at gotStat (fs.js:1785:21)
    at FSReqWrap.oncomplete (fs.js:152:21)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

解決辦法

經過網上的資料的查找,最後找到解決辦法以下:
我用的是truffle的最新版本(3.4.9),在這個版本有這個問題出現,把版本換成3.2.1問題解決。安裝指令以下:node

npm uninstall -g truffle
npm install -g truffle@3.2.1
  • 1
  • 2

官網github有人也問過這個問題,地址:
https://github.com/trufflesuite/truffle/issues/448git

相關文章
相關標籤/搜索