Rak*_*hna 8 npm react-native react-navigation
当我安装并尝试使用react-navigation(从'react-navigation'导入{StackNavigator};)时,我尝试使用react-native并获得以下错误.
我使用以下命令安装"react-navigation":npm install --save react-navigation
在运行上面的命令时,我在node_modules文件夹下得到'react-navigation'文件夹,只有一个文件(package.json).以下是文件的内容:
{
"_args": [
[
{
"raw": "react-navigation@0.0.0",
"scope": null,
"escapedName": "react-navigation",
"name": "react-navigation",
"rawSpec": "0.0.0",
"spec": "0.0.0",
"type": "version"
},
"/Users/rakesh-1812/Documents/REACT_JS/SimpleApp"
]
],
"_from": "react-navigation@0.0.0",
"_id": "react-navigation@0.0.0",
"_inCache": true,
"_location": "/react-navigation",
"_nodeVersion": "4.2.1",
"_npmOperationalInternal": {
"host": "packages-12-west.internal.npmjs.com",
"tmp": "tmp/react-navigation-0.0.0.tgz_1459892254509_0.1584461957681924"
},
"_npmUser": {
"name": "ericvicenti",
"email": "ericvicenti@gmail.com"
},
"_npmVersion": "2.14.7",
"_phantomChildren": {},
"_requested": {
"raw": "react-navigation@0.0.0",
"scope": null,
"escapedName": "react-navigation",
"name": "react-navigation",
"rawSpec": "0.0.0",
"spec": "0.0.0",
"type": "version"
},
"_requiredBy": [
"#USER",
"/"
],
"_resolved": "https://registry.npmjs.org/react-navigation/-/react-navigation-0.0.0.tgz",
"_shasum": "1e0f865235cdb4d4aa8086484fd3690ff73df553",
"_shrinkwrap": null,
"_spec": "react-navigation@0.0.0",
"_where": "/Users/rakesh-1812/Documents/REACT_JS/SimpleApp",
"dependencies": {},
"description": "Coming Soon",
"devDependencies": {},
"directories": {},
"dist": {
"shasum": "1e0f865235cdb4d4aa8086484fd3690ff73df553",
"tarball": "https://registry.npmjs.org/react-navigation/-/react-navigation-0.0.0.tgz"
},
"maintainers": [
{
"name": "ericvicenti",
"email": "ericvicenti@gmail.com"
}
],
"name": "react-navigation",
"optionalDependencies": {},
"readme": "ERROR: No README data found!",
"scripts": {},
"version": "0.0.0"
}
Run Code Online (Sandbox Code Playgroud)
有人可以帮我解决这个问题.提前致谢.
您必须停止节点服务器并再次启动它.
这样做:
sudo lsof -n -i4TCP:8081 | grep LISTEN
Run Code Online (Sandbox Code Playgroud)
它将侦听在端口8081上运行的服务.默认情况下,在其上运行反应本机服务器.然后,执行以下命令以终止服务器进程.
kill -9 <cma process id>
Run Code Online (Sandbox Code Playgroud)
最后,再次运行您的项目
react-native run-ios
Run Code Online (Sandbox Code Playgroud)
在项目文件夹上
小智 6
React导航仍处于beta中。当我使用命令时,它对我有用:
npm install --save react-navigation@1.0.0-beta.7
Run Code Online (Sandbox Code Playgroud)
这是最新版本。https://github.com/react-community/react-navigation/releases
归档时间: |
|
查看次数: |
13283 次 |
最近记录: |