如何在 mac 上卸载 react-native-cli?

Leo*_*ard 12 npm react-native

如何在 Mac 上卸载 react-native-cli?

我试过了npm uninstall react-native-cli,它给了我下面。

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.
Run Code Online (Sandbox Code Playgroud)

我想完全清除我的本机环境并重新安装它。我该怎么办?

hon*_*lop 32

卸载全局包

要卸载无作用域的全局包,请在命令行上使用uninstall带有-g标志的命令。如果包有范围,则包括范围。

npm uninstall -g react-native-cli
Run Code Online (Sandbox Code Playgroud)