1

webpack-dev-server をインストールできません:

npm install -g webpack-dev-server

そして私は得る:

gyp ERR! configure error
gyp ERR! stack Error: Can't find Python executable "python", you can set the PYTHON env variable.
npm ERR! Failed at the bufferutil@1.2.1 install script 'node-gyp rebuild'.
npm ERR! This is most likely a problem with the bufferutil package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     node-gyp rebuild
npm ERR! You can get their info via:
npm ERR!     npm owner ls bufferutil
npm ERR! There is likely additional logging output above.
npm ERR! Please include the following file with any support request:
npm ERR!     D:\...\npm-debug.log

Python をインストールする必要がありますか? どうすればそれを成し遂げることができますか?bufferutil パッケージに問題がありますか?

4

2 に答える 2

0

ここで職場の友人と話すことから、これは問題ではありません. Python はまったく必要ありません。

私はこれをもっと調べます。これまでのところ、インストールして実行しましたが、うまくいきません。ページを読み込もうとすると、コンバイナーに関する警告が 1 つ表示されて失敗します。

/deep/ combinator is deprecated. See https://www.chromestatus.com/features/6750456638341120 for more details.

これは、適切に動作させるために遭遇した問題と修正の小さなタイムラインです。リロードは私が思っていたよりもずっと遅いようです!

 1. 

Problem: Stuck pulling http://localhost:8080/webpack-dev-server/

fix: http://127.0.0.1:8080/

 2. 

Problem: which didn't allow for watch to reupdate

Fix:  change entry in webpack.config.js to entry: [
    "./app.js",
    'webpack/hot/only-dev-server', ] and include 
        <script src="https://localhost:8080/webpack-dev-server.js"></script> to the index.html and run webpack-dev-server --inline

 3. 

Problem: Then started getting: Errors while compiling. App updated with errors. No reload!     multi main Module not found: Error: Cannot resolve module 'webpack/hot/only-dev-server' in C:\Users\KRebstock\Desktop\reactexamples\webpack example1 resolve module webpack/hot/only-dev-server in C:\Users\KRebstock\Desktop\reactexamples\webpack example1  @ multi main

Fix:   removed
     'webpack/hot/only-dev-server', from  webpackage.config.js  in  entry: ["bla","bla"]
于 2015-10-02T19:17:19.840 に答える