Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.6 KiB

  1. npm-removal(1) -- Cleaning the Slate
  2. ====================================
  3. ## SYNOPSIS
  4. So sad to see you go.
  5. sudo npm uninstall npm -g
  6. Or, if that fails, get the npm source code, and do:
  7. sudo make uninstall
  8. ## More Severe Uninstalling
  9. Usually, the above instructions are sufficient. That will remove
  10. npm, but leave behind anything you've installed.
  11. If that doesn't work, or if you require more drastic measures,
  12. continue reading.
  13. Note that this is only necessary for globally-installed packages. Local
  14. installs are completely contained within a project's `node_modules`
  15. folder. Delete that folder, and everything is gone (unless a package's
  16. install script is particularly ill-behaved).
  17. This assumes that you installed node and npm in the default place. If
  18. you configured node with a different `--prefix`, or installed npm with a
  19. different prefix setting, then adjust the paths accordingly, replacing
  20. `/usr/local` with your install prefix.
  21. To remove everything npm-related manually:
  22. rm -rf /usr/local/{lib/node{,/.npm,_modules},bin,share/man}/npm*
  23. If you installed things *with* npm, then your best bet is to uninstall
  24. them with npm first, and then install them again once you have a
  25. proper install. This can help find any symlinks that are lying
  26. around:
  27. ls -laF /usr/local/{lib/node{,/.npm},bin,share/man} | grep npm
  28. Prior to version 0.3, npm used shim files for executables and node
  29. modules. To track those down, you can do the following:
  30. find /usr/local/{lib/node,bin} -exec grep -l npm \{\} \; ;
  31. (This is also in the README file.)
  32. ## SEE ALSO
  33. * README
  34. * npm-uninstall(1)
  35. * npm-prune(1)