📌  相关文章
📜  如何从反应原生项目中删除已安装的库 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:47.863000             🧑  作者: Mango

代码示例1
1. If it is a library based only on javascript, than you can just run
   npm uninstall --save package_name or npm uninstall --save-dev package_name
2. If you have installed a library with native content that requires linking,
   and you have linked it with npm then you can do:
   npm unlink [package_name] then follow step 1
3. If you've installed a library with native content manually,
   then just undo all the steps you took to add the library in the first place.
   Then follow step 1.