试图从Facebook构建flux-todomv示例,请参见:
flux-todomvc

我已经运行了npm install,它已经安装了依赖项。

当我运行npm start时,我会回来:
watchify -o js/bundle.js -v -d .1655542 bytes written to js/bundle.js (3.51 seconds)
但是,尚未创建bundle.js文件,当我打开index.html时,出现404错误,试图获取bundle.js

有任何想法吗?

最佳答案

我只是拉 repo 进行测试,然后我就可以正常运行它了。

这是我正在使用的环境:

  • OS X小牛
  • Node v0.10.29
  • npm 1.4.14
  • git 1.9.4

  • 在命令行上的步骤:
  • git clone https://github.com/facebook/flux.git
  • cd流量/示例/flux-todomvc/
  • npm安装
  • npm启动
  • ctrl-C
  • 打开index.html

  • 然后,如果您想破解它,则可以使用npm start重新启动watchify,以便将您的更改转换为标准ECMAScript 5。

    关于javascript - 无法建立Flux todo-mvc示例,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26858644/

    10-11 13:32