├── .gitignore ├── LICENSE ├── README.md ├── bower.json ├── fluxify.js ├── gulpfile.js ├── package.json ├── src ├── xDispatcher.js ├── xEmitter.js ├── xStore.js └── xUtils.js └── tests ├── a-fluxify-spec.js ├── dispatcher-spec.js └── stores-spec.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/fluxify/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/fluxify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/fluxify/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/fluxify/HEAD/bower.json -------------------------------------------------------------------------------- /fluxify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/fluxify/HEAD/fluxify.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/fluxify/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/fluxify/HEAD/package.json -------------------------------------------------------------------------------- /src/xDispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/fluxify/HEAD/src/xDispatcher.js -------------------------------------------------------------------------------- /src/xEmitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/fluxify/HEAD/src/xEmitter.js -------------------------------------------------------------------------------- /src/xStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/fluxify/HEAD/src/xStore.js -------------------------------------------------------------------------------- /src/xUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/fluxify/HEAD/src/xUtils.js -------------------------------------------------------------------------------- /tests/a-fluxify-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/fluxify/HEAD/tests/a-fluxify-spec.js -------------------------------------------------------------------------------- /tests/dispatcher-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/fluxify/HEAD/tests/dispatcher-spec.js -------------------------------------------------------------------------------- /tests/stores-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/fluxify/HEAD/tests/stores-spec.js --------------------------------------------------------------------------------