├── .babelrc ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .npmignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── LICENSE.md ├── README.md ├── devtools ├── devServer.js ├── index.ejs ├── webpack.config.config.js ├── webpack.config.dev.js ├── webpack.config.dist.js ├── webpack.config.dist.min.js ├── webpack.config.dlllib.dev.js └── webpack.config.lib.js ├── jsconfig.json ├── lib └── simpler-redux.js ├── package.json ├── src ├── index.js ├── proxy.js ├── react-simpler-redux.js ├── simpler-redux.js └── util.js └── test ├── App.jsx ├── Counter ├── index.js ├── model.js └── view.jsx ├── Counter1 ├── index.js ├── model.js └── view.jsx ├── Counter2 ├── index.js ├── model.js └── view.jsx ├── Counter3 ├── index.js ├── model.js └── view.jsx ├── Counter4 ├── index.js ├── model.js └── view.jsx ├── Counter5 ├── index.js ├── model.js └── view.jsx ├── Counter6 ├── index.js ├── model.js └── view.jsx ├── Counter7 ├── index.js ├── model.js └── view.jsx ├── Counter8 ├── index.js ├── model.js └── view.jsx ├── WrapCounter1 ├── index.js ├── model.js └── view.jsx ├── mountapp.jsx ├── projectsetup.js ├── reducers.js ├── reduxstore.js ├── setup.js ├── test.js ├── testApp.js └── util.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/.npmignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/README.md -------------------------------------------------------------------------------- /devtools/devServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/devtools/devServer.js -------------------------------------------------------------------------------- /devtools/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/devtools/index.ejs -------------------------------------------------------------------------------- /devtools/webpack.config.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/devtools/webpack.config.config.js -------------------------------------------------------------------------------- /devtools/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/devtools/webpack.config.dev.js -------------------------------------------------------------------------------- /devtools/webpack.config.dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/devtools/webpack.config.dist.js -------------------------------------------------------------------------------- /devtools/webpack.config.dist.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/devtools/webpack.config.dist.min.js -------------------------------------------------------------------------------- /devtools/webpack.config.dlllib.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/devtools/webpack.config.dlllib.dev.js -------------------------------------------------------------------------------- /devtools/webpack.config.lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/devtools/webpack.config.lib.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/jsconfig.json -------------------------------------------------------------------------------- /lib/simpler-redux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/lib/simpler-redux.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/src/index.js -------------------------------------------------------------------------------- /src/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/src/proxy.js -------------------------------------------------------------------------------- /src/react-simpler-redux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/src/react-simpler-redux.js -------------------------------------------------------------------------------- /src/simpler-redux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/src/simpler-redux.js -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/src/util.js -------------------------------------------------------------------------------- /test/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/App.jsx -------------------------------------------------------------------------------- /test/Counter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter/index.js -------------------------------------------------------------------------------- /test/Counter/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter/model.js -------------------------------------------------------------------------------- /test/Counter/view.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter/view.jsx -------------------------------------------------------------------------------- /test/Counter1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter1/index.js -------------------------------------------------------------------------------- /test/Counter1/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter1/model.js -------------------------------------------------------------------------------- /test/Counter1/view.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter1/view.jsx -------------------------------------------------------------------------------- /test/Counter2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter2/index.js -------------------------------------------------------------------------------- /test/Counter2/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter2/model.js -------------------------------------------------------------------------------- /test/Counter2/view.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter2/view.jsx -------------------------------------------------------------------------------- /test/Counter3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter3/index.js -------------------------------------------------------------------------------- /test/Counter3/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter3/model.js -------------------------------------------------------------------------------- /test/Counter3/view.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter3/view.jsx -------------------------------------------------------------------------------- /test/Counter4/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter4/index.js -------------------------------------------------------------------------------- /test/Counter4/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter4/model.js -------------------------------------------------------------------------------- /test/Counter4/view.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter4/view.jsx -------------------------------------------------------------------------------- /test/Counter5/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter5/index.js -------------------------------------------------------------------------------- /test/Counter5/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter5/model.js -------------------------------------------------------------------------------- /test/Counter5/view.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter5/view.jsx -------------------------------------------------------------------------------- /test/Counter6/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter6/index.js -------------------------------------------------------------------------------- /test/Counter6/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter6/model.js -------------------------------------------------------------------------------- /test/Counter6/view.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter6/view.jsx -------------------------------------------------------------------------------- /test/Counter7/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter7/index.js -------------------------------------------------------------------------------- /test/Counter7/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter7/model.js -------------------------------------------------------------------------------- /test/Counter7/view.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter7/view.jsx -------------------------------------------------------------------------------- /test/Counter8/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter8/index.js -------------------------------------------------------------------------------- /test/Counter8/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter8/model.js -------------------------------------------------------------------------------- /test/Counter8/view.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/Counter8/view.jsx -------------------------------------------------------------------------------- /test/WrapCounter1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/WrapCounter1/index.js -------------------------------------------------------------------------------- /test/WrapCounter1/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/WrapCounter1/model.js -------------------------------------------------------------------------------- /test/WrapCounter1/view.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/WrapCounter1/view.jsx -------------------------------------------------------------------------------- /test/mountapp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/mountapp.jsx -------------------------------------------------------------------------------- /test/projectsetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/projectsetup.js -------------------------------------------------------------------------------- /test/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/reducers.js -------------------------------------------------------------------------------- /test/reduxstore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/reduxstore.js -------------------------------------------------------------------------------- /test/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/setup.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/test.js -------------------------------------------------------------------------------- /test/testApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/testApp.js -------------------------------------------------------------------------------- /test/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewBanks10/simpler-redux/HEAD/test/util.js --------------------------------------------------------------------------------