Why does NPM always throw an error, no matter what the command is?
Whenever I type any NPM command, I get this error:
C:Program Files (x86)Microsoft Visual Studio 14.0>npm -v
internal/modules/cjs/loader.js:582
throw err;
^
Error: Cannot find module 'os-tmpdir'
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:580:15)
at Function.Module._load (internal/modules/cjs/loader.js:506:25)
at Module.require (internal/modules/cjs/loader.js:636:17)
at require (internal/modules/cjs/helpers.js:20:18)
at Object.<anonymous> (C:Users*I like my privacy*AppDataRoamingnpmnode_modulesnpmnode_modulesosenvosenv.js:4:16)
at Module._compile (internal/modules/cjs/loader.js:688:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:699:10)
at Module.load (internal/modules/cjs/loader.js:598:32)
at tryModuleLoad (internal/modules/cjs/loader.js:537:12)
at Function.Module._load (internal/modules/cjs/loader.js:529:3)
I've tried reinstalling node, but I keep getting that same error. I've noticed that if I search NPM in the "add or remove programs" page in settings, I get no results, if that's useful.
My version of Node is v10.13.0
I'm using Windows 10 Home, version 1803
npm windows-10
add a comment |
Whenever I type any NPM command, I get this error:
C:Program Files (x86)Microsoft Visual Studio 14.0>npm -v
internal/modules/cjs/loader.js:582
throw err;
^
Error: Cannot find module 'os-tmpdir'
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:580:15)
at Function.Module._load (internal/modules/cjs/loader.js:506:25)
at Module.require (internal/modules/cjs/loader.js:636:17)
at require (internal/modules/cjs/helpers.js:20:18)
at Object.<anonymous> (C:Users*I like my privacy*AppDataRoamingnpmnode_modulesnpmnode_modulesosenvosenv.js:4:16)
at Module._compile (internal/modules/cjs/loader.js:688:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:699:10)
at Module.load (internal/modules/cjs/loader.js:598:32)
at tryModuleLoad (internal/modules/cjs/loader.js:537:12)
at Function.Module._load (internal/modules/cjs/loader.js:529:3)
I've tried reinstalling node, but I keep getting that same error. I've noticed that if I search NPM in the "add or remove programs" page in settings, I get no results, if that's useful.
My version of Node is v10.13.0
I'm using Windows 10 Home, version 1803
npm windows-10
What version of npm did you try to install?
– k0pernikus
Nov 15 '18 at 14:24
add a comment |
Whenever I type any NPM command, I get this error:
C:Program Files (x86)Microsoft Visual Studio 14.0>npm -v
internal/modules/cjs/loader.js:582
throw err;
^
Error: Cannot find module 'os-tmpdir'
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:580:15)
at Function.Module._load (internal/modules/cjs/loader.js:506:25)
at Module.require (internal/modules/cjs/loader.js:636:17)
at require (internal/modules/cjs/helpers.js:20:18)
at Object.<anonymous> (C:Users*I like my privacy*AppDataRoamingnpmnode_modulesnpmnode_modulesosenvosenv.js:4:16)
at Module._compile (internal/modules/cjs/loader.js:688:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:699:10)
at Module.load (internal/modules/cjs/loader.js:598:32)
at tryModuleLoad (internal/modules/cjs/loader.js:537:12)
at Function.Module._load (internal/modules/cjs/loader.js:529:3)
I've tried reinstalling node, but I keep getting that same error. I've noticed that if I search NPM in the "add or remove programs" page in settings, I get no results, if that's useful.
My version of Node is v10.13.0
I'm using Windows 10 Home, version 1803
npm windows-10
Whenever I type any NPM command, I get this error:
C:Program Files (x86)Microsoft Visual Studio 14.0>npm -v
internal/modules/cjs/loader.js:582
throw err;
^
Error: Cannot find module 'os-tmpdir'
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:580:15)
at Function.Module._load (internal/modules/cjs/loader.js:506:25)
at Module.require (internal/modules/cjs/loader.js:636:17)
at require (internal/modules/cjs/helpers.js:20:18)
at Object.<anonymous> (C:Users*I like my privacy*AppDataRoamingnpmnode_modulesnpmnode_modulesosenvosenv.js:4:16)
at Module._compile (internal/modules/cjs/loader.js:688:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:699:10)
at Module.load (internal/modules/cjs/loader.js:598:32)
at tryModuleLoad (internal/modules/cjs/loader.js:537:12)
at Function.Module._load (internal/modules/cjs/loader.js:529:3)
I've tried reinstalling node, but I keep getting that same error. I've noticed that if I search NPM in the "add or remove programs" page in settings, I get no results, if that's useful.
My version of Node is v10.13.0
I'm using Windows 10 Home, version 1803
npm windows-10
npm windows-10
asked Nov 15 '18 at 1:41
F4TornadoF4Tornado
4817
4817
What version of npm did you try to install?
– k0pernikus
Nov 15 '18 at 14:24
add a comment |
What version of npm did you try to install?
– k0pernikus
Nov 15 '18 at 14:24
What version of npm did you try to install?
– k0pernikus
Nov 15 '18 at 14:24
What version of npm did you try to install?
– k0pernikus
Nov 15 '18 at 14:24
add a comment |
1 Answer
1
active
oldest
votes
I would remove node: How do I completely uninstall Node.js, and reinstall from beginning (Mac OS X)
And then reinstall it with NVM: https://github.com/creationix/nvm like this:
> nvm install 8.9.1
> nvm list // Will show you available NodeJS distribution
> 8.9.1
// So tell nvm to use your version
> nvm use 8.9.1
> nvm list
> * 8.9.1 (Currently using 64-bit executable)
> node -v
> 8.9.1
I use Windows 10, so I had to use these links instead: stackoverflow.com/questions/20711240/… github.com/coreybutler/nvm-windows
– F4Tornado
Nov 15 '18 at 20:54
Ok, and did it work? Did you use NVM to reinstall it?
– Rafaël Moser
Nov 16 '18 at 9:28
1
Yes, it worked, and yes, I used NVM.
– F4Tornado
Nov 16 '18 at 20:07
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53311267%2fwhy-does-npm-always-throw-an-error-no-matter-what-the-command-is%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I would remove node: How do I completely uninstall Node.js, and reinstall from beginning (Mac OS X)
And then reinstall it with NVM: https://github.com/creationix/nvm like this:
> nvm install 8.9.1
> nvm list // Will show you available NodeJS distribution
> 8.9.1
// So tell nvm to use your version
> nvm use 8.9.1
> nvm list
> * 8.9.1 (Currently using 64-bit executable)
> node -v
> 8.9.1
I use Windows 10, so I had to use these links instead: stackoverflow.com/questions/20711240/… github.com/coreybutler/nvm-windows
– F4Tornado
Nov 15 '18 at 20:54
Ok, and did it work? Did you use NVM to reinstall it?
– Rafaël Moser
Nov 16 '18 at 9:28
1
Yes, it worked, and yes, I used NVM.
– F4Tornado
Nov 16 '18 at 20:07
add a comment |
I would remove node: How do I completely uninstall Node.js, and reinstall from beginning (Mac OS X)
And then reinstall it with NVM: https://github.com/creationix/nvm like this:
> nvm install 8.9.1
> nvm list // Will show you available NodeJS distribution
> 8.9.1
// So tell nvm to use your version
> nvm use 8.9.1
> nvm list
> * 8.9.1 (Currently using 64-bit executable)
> node -v
> 8.9.1
I use Windows 10, so I had to use these links instead: stackoverflow.com/questions/20711240/… github.com/coreybutler/nvm-windows
– F4Tornado
Nov 15 '18 at 20:54
Ok, and did it work? Did you use NVM to reinstall it?
– Rafaël Moser
Nov 16 '18 at 9:28
1
Yes, it worked, and yes, I used NVM.
– F4Tornado
Nov 16 '18 at 20:07
add a comment |
I would remove node: How do I completely uninstall Node.js, and reinstall from beginning (Mac OS X)
And then reinstall it with NVM: https://github.com/creationix/nvm like this:
> nvm install 8.9.1
> nvm list // Will show you available NodeJS distribution
> 8.9.1
// So tell nvm to use your version
> nvm use 8.9.1
> nvm list
> * 8.9.1 (Currently using 64-bit executable)
> node -v
> 8.9.1
I would remove node: How do I completely uninstall Node.js, and reinstall from beginning (Mac OS X)
And then reinstall it with NVM: https://github.com/creationix/nvm like this:
> nvm install 8.9.1
> nvm list // Will show you available NodeJS distribution
> 8.9.1
// So tell nvm to use your version
> nvm use 8.9.1
> nvm list
> * 8.9.1 (Currently using 64-bit executable)
> node -v
> 8.9.1
answered Nov 15 '18 at 14:20
Rafaël MoserRafaël Moser
7118
7118
I use Windows 10, so I had to use these links instead: stackoverflow.com/questions/20711240/… github.com/coreybutler/nvm-windows
– F4Tornado
Nov 15 '18 at 20:54
Ok, and did it work? Did you use NVM to reinstall it?
– Rafaël Moser
Nov 16 '18 at 9:28
1
Yes, it worked, and yes, I used NVM.
– F4Tornado
Nov 16 '18 at 20:07
add a comment |
I use Windows 10, so I had to use these links instead: stackoverflow.com/questions/20711240/… github.com/coreybutler/nvm-windows
– F4Tornado
Nov 15 '18 at 20:54
Ok, and did it work? Did you use NVM to reinstall it?
– Rafaël Moser
Nov 16 '18 at 9:28
1
Yes, it worked, and yes, I used NVM.
– F4Tornado
Nov 16 '18 at 20:07
I use Windows 10, so I had to use these links instead: stackoverflow.com/questions/20711240/… github.com/coreybutler/nvm-windows
– F4Tornado
Nov 15 '18 at 20:54
I use Windows 10, so I had to use these links instead: stackoverflow.com/questions/20711240/… github.com/coreybutler/nvm-windows
– F4Tornado
Nov 15 '18 at 20:54
Ok, and did it work? Did you use NVM to reinstall it?
– Rafaël Moser
Nov 16 '18 at 9:28
Ok, and did it work? Did you use NVM to reinstall it?
– Rafaël Moser
Nov 16 '18 at 9:28
1
1
Yes, it worked, and yes, I used NVM.
– F4Tornado
Nov 16 '18 at 20:07
Yes, it worked, and yes, I used NVM.
– F4Tornado
Nov 16 '18 at 20:07
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53311267%2fwhy-does-npm-always-throw-an-error-no-matter-what-the-command-is%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What version of npm did you try to install?
– k0pernikus
Nov 15 '18 at 14:24