19

How can I uninstall react-native-cli on Mac??

I tried npm uninstall react-native-cli and it gives me below.

npm WARN eslint-plugin-react@7.12.4 requires a peer of eslint@^3.0.0 || ^4.0.0 || ^5.0.0 but none is installed. You must install peer dependencies yourself.
npm WARN eslint-plugin-react-native@3.6.0 requires a peer of eslint@^3.17.0 || ^4 || ^5 but none is installed. You must install peer dependencies yourself.

I want to completely wipe-off my react native environment and re-install it. What should I do?

Leonard
  • 2,978
  • 6
  • 21
  • 42

2 Answers2

52

Uninstalling global packages

To uninstall an unscoped global package, on the command line, use the uninstall command with the -g flag. Include the scope if the package is scoped.

npm uninstall -g react-native-cli

After close commad line and Do turn on commad line

❯ which react-native
# react-native not found
hong developer
  • 13,291
  • 4
  • 38
  • 68
  • 1
    Hello Thanks for helping me out consistently. I'm facing one weird issue that completely broke down my environment while following your AsyncStorage answer... could you please help me out? – Leonard Jul 29 '19 at 07:07
  • I can't check enough time passes. okay. I will – Leonard Jul 29 '19 at 07:09
  • https://stackoverflow.com/questions/57248850/unable-to-resolve-module-react-native-community-async-storage-broke-down-my-r – Leonard Jul 29 '19 at 07:18
  • I just posted the new question @hong develop – Leonard Jul 29 '19 at 07:18
  • 1
    I did that and I still can do "react-native init GarbageProject" – Andrii Kapinos Dec 20 '21 at 15:59
  • @AndriiKapinos Try turning the terminal off and on after running, and if it still works, use the `which react-native` command in the terminal to see where the installation is again. – hong developer Aug 18 '23 at 02:39
1

If you need to completely remove react native environment you need to remove CLI

npm uninstall -g react-native-cli @react-native-community/cli

next, remove watchman

brew uninstall watchman

remove Android env:

How to completely uninstall Android Studio on Mac?

remove IOS env:

How to Completely Uninstall Xcode and Clear All Settings

Kirill Novikov
  • 2,576
  • 4
  • 20
  • 33