web-dev-qa-db-ja.com

新しいVaadin 14アプリの実行に失敗し、エラー「「ノード」ツールを特定できませんでした。」 Node.jsおよびnpmツールがありません

Get Started ページを使用して、Plain Java =サーブレットオプション。

Webページは正常にダウンロードされました.Zip解凍してIntelliJ Ultimate Editionバージョン2019.2で開いたファイル。 Mavenがプロジェクトをダウンロードして再構成している間、私は数分待ちました。最終的に私はIntelliJ内のMavenパネルに行き、Lifecycleアイテムcleaninstallを実行しました。

コンソールに次のエラーメッセージが表示されました。

[ERROR] Failed to execute goal com.vaadin:vaadin-maven-plugin:14.0.0:prepare-frontend (default) on project acme: Execution default of goal com.vaadin:vaadin-maven-plugin:14.0.0:prepare-frontend failed: 
[ERROR] 
[ERROR] ======================================================================================================
[ERROR] Failed to determine 'node' tool.
[ERROR] Please install it either:
[ERROR]   - by following the https://nodejs.org/en/download/ guide to install it globally
[ERROR]   - or by running the frontend-maven-plugin goal to install it in this project:
[ERROR]   $ mvn com.github.eirslett:frontend-maven-plugin:1.7.6:install-node-and-npm -DnodeVersion="v10.16.0" 
[ERROR] ======================================================================================================

Vaadinフォーラムでの ディスカッション を参照してください。

私は チケット#6262 Node.js&npmを自動的にインストールするようにMavenを設定 を提出しました。問題。

8
Basil Bourque

ノードのインストール後、vaadinアプリのコンパイルで同じ問題が発生しました。
ノードを見つけて正常に実行するには、PCを再起動する必要がありました。

0
ekim