This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7.3k
windows: Create npm folder in AppData directory #8838
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Create the empty npm folder in Roaming\Appdata so that non-Administrator users have a place to store global packages. This fixes the error Error: ENOENT, stat error that occurs when a user tries to run the npm install <package> command. Fixes nodejs#8141
Doesn't it make more sense to add the |
Yeah it does make more sense to put it under the npm feature element. I'll move it there and get you a new fix. |
Better still you can install a older version of nodeJS. That works. there is a bug with version 32 |
Create the empty npm folder in Roaming\Appdata so that non-Administrator users have a place to store global packages. This fixes the error Error: ENOENT, stat error that occurs when a user tries to run the npm install <package> command. Fixes nodejs#8141
…o fix-issue-8141
piscisaureus
pushed a commit
to nodejs/node
that referenced
this pull request
Jan 12, 2015
Create the empty npm folder in Roaming\Appdata so that non-Administrator users have a place to store global packages. This fixes the error Error: ENOENT, stat error that occurs when a user tries to run the npm install <package> command. Bug: nodejs/node-v0.x-archive#8141 PR: nodejs/node-v0.x-archive#8838 Reviewed-by: Bert Belder <bertbelder@gmail.com> Please enter the commit message for your changes. Lines starting
lgtm code-wise. |
+1 still not working till node v0.10.32 🎱 |
piscisaureus
pushed a commit
that referenced
this pull request
Jul 1, 2015
Create the empty npm folder in Roaming\Appdata so that non-Administrator users have a place to store global packages. This fixes the error Error: ENOENT, stat error that occurs when a user tries to run the npm install <package> command. Bug: #8141 PR: #8838 Reviewed-by: Bert Belder <bertbelder@gmail.com>
piscisaureus
pushed a commit
that referenced
this pull request
Jul 1, 2015
Create the empty npm folder in Roaming\Appdata so that non-Administrator users have a place to store global packages. This fixes the error Error: ENOENT, stat error that occurs when a user tries to run the npm install <package> command. Bug: #8141 PR: #8838 Reviewed-by: Bert Belder <bertbelder@gmail.com>
misterdjules
pushed a commit
to misterdjules/node
that referenced
this pull request
Jul 16, 2015
Create the empty npm folder in Roaming\Appdata so that non-Administrator users have a place to store global packages. This fixes the error Error: ENOENT, stat error that occurs when a user tries to run the npm install <package> command. Bug: nodejs#8141 PR: nodejs#8838 Reviewed-by: Bert Belder <bertbelder@gmail.com>
jBarz
pushed a commit
to ibmruntimes/node
that referenced
this pull request
Nov 4, 2016
Create the empty npm folder in Roaming\Appdata so that non-Administrator users have a place to store global packages. This fixes the error Error: ENOENT, stat error that occurs when a user tries to run the npm install <package> command. Bug: nodejs#8141 PR: nodejs#8838 Reviewed-by: Bert Belder <bertbelder@gmail.com>
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Create the empty npm folder in Roaming\Appdata so that
non-Administrator users have a place to store global packages.
This fixes the error Error: ENOENT, stat error that occurs
when a user tries to run the npm install command.
Fixes #8141