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
truffle serve # Host your web interface on port 8080
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)
經過網上的資料的查找,最後找到解決辦法以下:
我用的是truffle的最新版本(3.4.9),在這個版本有這個問題出現,把版本換成3.2.1問題解決。安裝指令以下:node
npm uninstall -g truffle npm install -g truffle@3.2.1
官網github有人也問過這個問題,地址:
https://github.com/trufflesuite/truffle/issues/448git