just a quick question. I have installed nodejs and generated an application. After that I found that the hard disk performance degraded quite considerably. After uninstalling node js the node modules directory is still there! How do i get rid of this bloatware?
Asked
Active
Viewed 131 times
0
-
nodejs isn't bloatware. Simply having nodejs on your hard drive doesn't do anything to slow down that hard drive unless something merely taking space on your hard drive causes such a problem in a malfunctioning system. I'd suggest you fix your system so that putting some data on your hard drive doesn't slow down your system. Also, what's wrong with just deleting the `node_modules` directory? – jfriend00 May 29 '16 at 07:23
1 Answers
0
Looks like this question has been answered before:
To completely uninstall node + npm is to do the following:
The best answer stated:
- go to /usr/local/lib and delete any node and node_modules
- go to /usr/local/include and delete any node and node_modules directory
- if you installed with brew install node, then run brew uninstall node in your terminal
- check your Home directory for any local or lib or include folders, and delete any node or node_modules from there
- go to /usr/local/bin and delete any node executable
Hope that helps!

Community
- 1
- 1

Seth Welch
- 1
- 1
-
-
Where is the place to look for usr/local lib? I looked in C:\Windows, nothing comes up. – fbc May 30 '16 at 01:47