Windows 10无法使用Node和React进行编译 - 语法错误?

时间:2017-09-27 15:33:11

标签: node.js reactjs syntax-error

我一直在尝试启动React项目,但无法避免以下语法错误消息。我试过Yarn只会遇到更多错误(那将是另一篇文章)。我的同事在他们的Mac上运行它没有任何问题,所以我想知道它是否是Windows特定的问题?完全失去了这个:

./src/ducks/auth/index.js
Syntax error: C:/Users/user/code/project/src/ducks/auth/index.js: Unexpected 
token, expected ; (5:20)

  3 | export * from './constants';
  4 | 
> 5 | export default from './reducer';
    |                     ^
  6 | 
  7 | export * from './selectors'; 

1 个答案:

答案 0 :(得分:0)

您是importing还是exporting?你的语法现在看起来只有一半。如果您要出口:

export default <name of function>

如果您要导入:

import <name of default function> from './reducer

编辑:现在我看一下,你显然是在导入。导入时,您必须说明导出内容的确切名称。导入时没有关键字default。此外,您需要使用import,而不是export