我正在尝试创建反应应用程序的所有方法。我已经尝试过使用 maven,现在我正在尝试使用 Facebook Incubator 的 crate-react- app 构建系统。
当我尝试create-react-app my-app在 npm 环境中运行该命令时,它在我的个人系统上运行没有问题。但是当我在我的工作环境中尝试相同的命令时,我在命令提示符下遇到了这个错误
create-react-app my-app
npm ERR! node v6.10.2 npm ERR! npm v3.10.10 npm ERR! code UNABLE_TO_GET_ISSUER_CERT_LOCALLY npm ERR! unable to get local issuer certificate npm ERR! npm ERR! If you need help, you may report this error at: npm ERR! <https://github.com/npm/npm/issues>
互联网搜索的一个快速解决方案是npm config set strict-ssl false,幸运的是它有效。但作为我工作环境的一部分,我只能将 strict-ssl 标志设置为 false。
npm config set strict-ssl false
后来我找到了一个安全有效的解决方案,
npm config set registry http://registry.npmjs.org/
这工作得很好,我Happy Hacking!通过不将 strict-ssl 标志设置为 false 得到了成功消息。
Happy Hacking!