react-native init syntaxerror:意外令牌)

时间:2015-11-01 19:21:21

标签: android node.js npm react-native

我正在尝试使用Windows 10上的ReactNative为Android创建一个简单的应用程序,但是当我打电话时

  

react-native init AwesomeProject

安装react-native软件包后出现错误:

C:\Users\Вячеслав\Documents\ReactNative>react-native init AwesomeProject2
This will walk you through creating a new React Native project in C:\Users\Вячеслав\Documents\ReactNative\AwesomeProject2
Installing react-native package from npm...
C:\Users\Вячеслав\Documents\ReactNative\AwesomeProject2\node_modules\react-native\packager\react-packager\src\Server\index.js:199
      );
      ^

SyntaxError: Unexpected token )
    at exports.runInThisContext (vm.js:53:16)
    at Module._compile (module.js:404:25)
    at Module._extensions..js (module.js:432:10)
    at Object.require.extensions.(anonymous function) [as .js] (C:\Users\Вячеслав\Documents\ReactNative\AwesomeProject2\node_modules\babel-core\lib\api\register\node.js:214:7)
    at Module.load (module.js:356:32)
    at Function.Module._load (module.js:311:12)
    at Module.require (module.js:366:17)
    at require (module.js:385:17)
    at Object.<anonymous> (C:\Users\Вячесла\Documents\ReactNative\AwesomeProject
2\node_modules\react-native\packager\react-packager\index.js:16:14)
    at Module._compile (module.js:425:26)

我有NodeJs v5.0.0和npm v3.3.6。

我试图从这里做一些步骤:

  

https://gist.github.com/davidgilbertson/9bee68548037fe00f2a8

但他们没有帮助我:((

感觉NodeJs无法理解ES6的语法,但我不知道为什么

我该如何解决这个问题?

2 个答案:

答案 0 :(得分:1)

这是项目路径中包含非ASCII字符的问题。发生这种情况时,babel没有正确规范require()调用的路径,并且babel-register功能失败。

长话短说,问题将通过此拉取请求修复: https://github.com/facebook/react-native/pull/10154

答案 1 :(得分:0)

sudo npm cache clean -f
sudo npm install -g n
sudo n stable

为我工作,因为它安装了最新版本的Node.js