Issue
When i tried build and clean my project
pom.xml
<configuration>
<nodeVersion>v6.11.3</nodeVersion>
<npmVersion>3.10.10</npmVersion>
<nodeDownloadRoot>https://nodejs.org/dist/</nodeDownloadRoot>
<workingDirectory>src/main/angularDash</workingDirectory>
</configuration>
I have this error:
Failed to execute goal com.github.eirslett:frontend-maven-plugin:0.0.22:install-node-and-npm (install node and npm) on project dashAngular: Could not download Node.js from: https://nodejs.org/dist/v6.11.3/x64/node.exe: Got error code 404 from the server. -> [Help 1]
Solution
Configure below URL directly to download node
https://nodejs.org/dist/v6.11.3/win-x64/node.exe
Or if you replace version with v0.9.9 it will work
Answered By - sonu singhal
Answer Checked By - David Goodson (JavaFixing Volunteer)