M1 Mac, cant build wknd tutorial, get "Could not download Node.js: Got error code 404 from the server." | Community
Skip to main content
Level 2
March 8, 2021
Solved

M1 Mac, cant build wknd tutorial, get "Could not download Node.js: Got error code 404 from the server."

  • March 8, 2021
  • 3 replies
  • 13329 views

downloaded source zip from here: https://github.com/adobe/aem-guides-wknd/releases/tag/aem-guides-wknd-0.2.0

 

[ERROR] Failed to execute goal com.github.eirslett:frontend-maven-plugin:1.7.6:install-node-and-npm (install node and npm) on project aem-guides-wknd.ui.frontend: Could not download Node.js: Got error code 404 from the server. -> [Help 1]

 

Have following installed:

Java 11

node v15.0.0

mvn 3.6.3

npm 7.6.0

 

Im doing this from zsh.  Tried bash also.  Is it because its not X86 arch on the M1 mac?

 

I also tried changing node to the latest in the pom file:

 

<nodeVersion>v11.14.0</nodeVersion>
<npmVersion>7.6.0</npmVersion>
 
This didnt help
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by nutmix5

I found the solution.  The fontend-maven-plugin is old, and doesnt support the newer chips.

 

The solution was to change its version to 1.11:

 

<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>1.11.0</version>

 

Lets hope someone from Adobe updates their wknd source before too many people hit the same problem.

3 replies

Anudeep_Garnepudi
Community Advisor
Community Advisor
March 9, 2021

@nutmix5 

Check frontend-maven-plugin configuration. Try  accessing node version <nodeVersion>v10.13.0</nodeVersion> from https://nodejs.org/dist/v10.13.0/ . Try to build as admin. 

nutmix5AuthorAccepted solution
Level 2
March 9, 2021

I found the solution.  The fontend-maven-plugin is old, and doesnt support the newer chips.

 

The solution was to change its version to 1.11:

 

<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>1.11.0</version>

 

Lets hope someone from Adobe updates their wknd source before too many people hit the same problem.

March 15, 2024

Thank you so much , i was stuck on this point.

Level 4
March 21, 2022

Thanks for the question brother