在 Meteor.js 中使用 Redux
Using Redux in Meteor.js
我是 Meteor.js 的新手,正在从事一个我也使用 Redux 的项目,所以我添加了 kyutaekang:redux 包。问题是我不知道如何导入 Redux 来使用它。我试过了:
import { createStore } from 'redux';
、
但是当我启动应用程序时,我得到
[Error: Unable to fetch "redux". Only file URLs of the form file:/// allowed running in Node.]
.
Meteor 尚不支持开箱即用的 ES2015 import
(可能在 1.3.0 中可用)。因此,您将需要一个现代模块捆绑器,如软件包的自述文件中所述:
This assumes that you’re using npm package manager with a module bundler like Webpack or Browserify to consume CommonJS modules.
您可以看一下 Adam Brodzinski 的 this excellent example 以帮助您入门。
编辑:
仔细看了一下包裹,里面似乎没有任何代码。
尽管如此,我对 Adam 的回购(或他的 other repo,在评论中指出)的建议仍然是一个很好、干净的实现。
我是 Meteor.js 的新手,正在从事一个我也使用 Redux 的项目,所以我添加了 kyutaekang:redux 包。问题是我不知道如何导入 Redux 来使用它。我试过了:
import { createStore } from 'redux';
、
但是当我启动应用程序时,我得到
[Error: Unable to fetch "redux". Only file URLs of the form file:/// allowed running in Node.]
.
Meteor 尚不支持开箱即用的 ES2015 import
(可能在 1.3.0 中可用)。因此,您将需要一个现代模块捆绑器,如软件包的自述文件中所述:
This assumes that you’re using npm package manager with a module bundler like Webpack or Browserify to consume CommonJS modules.
您可以看一下 Adam Brodzinski 的 this excellent example 以帮助您入门。
编辑:
仔细看了一下包裹,里面似乎没有任何代码。
尽管如此,我对 Adam 的回购(或他的 other repo,在评论中指出)的建议仍然是一个很好、干净的实现。