首页 > 学院 > 开发设计 > 正文

react native安装过程遇到的问题

2019-11-09 13:56:46
字体:
来源:转载
供稿:网友

1、Error: Cannot find module ‘invariant’

$ react-native init TestAppThis may take some time...This will walk you through creating a new React Native PRoject in /Users/hangge/Documents/React/TestAppInstalling react-native package from npm...module.js:327throw err;^Error: Cannot find module 'invariant'at Function.Module._resolveFilename (module.js:325:15)at Function.Module._load (module.js:276:25) at Module.require (module.js:353:17)at require (internal/module.js:12:17)at Object. (/Users/hangge/Documents/React/TestApp/node_modules/react-native/packager/react-packager/src/node-haste/Module.js:18:19)at Module._compile (module.js:409:26)at loader (/Users/hangge/Documents/React/TestApp/node_modules/react-native/node_modules/babel-register/lib/node.js:144:5)at Object.require.extensions.(anonymous function) [as .js] (/Users/hangge/Documents/React/TestApp/node_modules/react-native/node_modules/babel-register/lib/node.js:154:7)at Module.load (module.js:343:32)at Function.Module._load (module.js:300:12)

解决办法:先调用如下命令后,再进行初始化。 npm i --save-dev invariant

2、通过brew安装node时,警告:it’s just not linked.

解决方法:brew提示你之前已经安装过 node了, 它没有强制link过去, 你可以使用他的提示查看哪些文件冲突, 确定没有问题可以使用强制link命令 关联

3、React Native在虚拟运行app时,报错RCTRootView not found

解决方法:sudo npm install

安装过程参考链接:http://www.jianshu.com/p/82a6189f626b


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表