You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 4, 2025. It is now read-only.
NodeRT package(s) are very old. They were made in the Win8 UWP era.
They require the
/ZWflag (C++/CX | Windows Runtime Compilation).Node v22 started to use
/std:c++20.That's an issue because it's incompatible with
/ZW(C++/CX).And this is unlikely to change because Microsoft has abandoned UWP/WinRT and recommends to move to C++/WinRT from C++/CX.
Altho forcing
/std:c++17worked before when building native addons for Node v22; Electron v32 requires it.