Last active
August 9, 2024 03:11
-
-
Save DonRichards/9a39d3376fb4526212cd to your computer and use it in GitHub Desktop.
Setup NPM for Nodemon Environment in Windows 10
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
C:\>npm install -g nodemon | |
C:\>npm config get prefix | |
C:\>set PATH=%PATH%;C:\Users\username\AppData\Roaming\npm; | |
C:\>set PATH=%PATH%;C:\Program Files (x86)\nodejs; | |
// Node still places 64bit versions in the 32bit directory |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for your help!