We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5899439 commit b71731aCopy full SHA for b71731a
emsdk.py
@@ -1478,6 +1478,11 @@ def find_emscripten_root(active_tools):
1478
1479
1480
def fetch_nightly_node_versions():
1481
+ # Node.js Apple ARM64 nightly downloads are currently out of order, so pin
1482
+ # to recent version that does still exist. https://github.com/nodejs/node/issues/59654
1483
+ if MACOS and ARCH == 'arm64':
1484
+ return ['v25.0.0-nightly20250715b305119844']
1485
+
1486
url = "https://nodejs.org/download/nightly/"
1487
with urlopen(url) as response:
1488
html = response.read().decode("utf-8")
0 commit comments