1
私はweexpackプロジェクトをインストールしました。'weexpack run web' throwing error
私はコマンドを実行しようとしているときweexpack webを実行するとエラーが表示されます。
module.js:442
throw err;
^
Error: Cannot find module '../src/run/Web'
at Function.Module._resolveFilename (module.js:440:15)
at Function.Module._load (module.js:388:25)
at Module.require (module.js:468:17)
at require (internal/module.js:20:19)
at Object. (/home/dev03/.nvm/versions/node/v6.2.1/lib/node_modules/weexpack/bin/weexpack-run:7:16)
at Module._compile (module.js:541:32)
at Object.Module._extensions..js (module.js:550:10)
at Module.load (module.js:458:32)
at tryModuleLoad (module.js:417:12)
at Function.Module._load (module.js:409:3)
誰でも教えてもらえますか?
私はこれについても興味があります...私はweex run、weex run web、_and_ weex run android'と同じ正確なエラーを見ています。 – codermonkeyfuel
@codermonkeyfuelその実際のパス/大文字と小文字を区別する問題。 エラー:モジュール '../src/run/Web'を見つけることができません ./src/run/web =>ここで 'W'は 'w'になります。 – ZIS