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
I am building node v4.0.0 in windows with vcbuild nosign. Node itself is working perfectly, I noticed I am missing all the npm stuff (npm install -g xxxx is not working). Is this working as intended? If so, how can I get npm up and running? Before anyone asks, due to different circumstances I am fixed on v4.0.0 (f9f8378)
The text was updated successfully, but these errors were encountered:
Just running vcbuild nosign only builds the necessary artifacts, it does not install them into your local environment. There's an option to generate an installer with vcbuild. Running that installer ought to include the npm utility.
@Junkern for a quick work around to use npm directly with the compiled node, you can copy deps\npm to Release\node_modules (creating Release\node_modules\npm) and everything from inside deps\npm\bin directly to Release (so that Release\npm.cmd exists).
I am building node v4.0.0 in windows with
vcbuild nosign
. Node itself is working perfectly, I noticed I am missing all the npm stuff (npm install -g xxxx
is not working). Is this working as intended? If so, how can I get npm up and running? Before anyone asks, due to different circumstances I am fixed on v4.0.0 (f9f8378)The text was updated successfully, but these errors were encountered: