├── .babelrc ├── .eslintignore ├── .eslintrc.yml ├── .gitignore ├── .istanbul.yml ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── esdoc.json ├── manual ├── configuration.md ├── examples │ ├── example1.md │ └── example2.md ├── faq.md ├── installation.md ├── overview.md ├── tutorial.md └── usage.md ├── package.json ├── src └── index.js └── test └── index.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahnz/redux-socket.io-connect/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahnz/redux-socket.io-connect/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | npm-debug.log 2 | build/ 3 | coverage/ 4 | docs/ 5 | node_modules/ 6 | -------------------------------------------------------------------------------- /.istanbul.yml: -------------------------------------------------------------------------------- 1 | --- 2 | instrumentation: 3 | root: src 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | npm-debug.log 2 | coverage/ 3 | docs/ 4 | node_modules/ 5 | test/ 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahnz/redux-socket.io-connect/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahnz/redux-socket.io-connect/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahnz/redux-socket.io-connect/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahnz/redux-socket.io-connect/HEAD/README.md -------------------------------------------------------------------------------- /esdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahnz/redux-socket.io-connect/HEAD/esdoc.json -------------------------------------------------------------------------------- /manual/configuration.md: -------------------------------------------------------------------------------- 1 | # Configuration 2 | -------------------------------------------------------------------------------- /manual/examples/example1.md: -------------------------------------------------------------------------------- 1 | # Example 1 2 | -------------------------------------------------------------------------------- /manual/examples/example2.md: -------------------------------------------------------------------------------- 1 | # Example 2 2 | -------------------------------------------------------------------------------- /manual/faq.md: -------------------------------------------------------------------------------- 1 | # FAQ 2 | -------------------------------------------------------------------------------- /manual/installation.md: -------------------------------------------------------------------------------- 1 | # Installation 2 | -------------------------------------------------------------------------------- /manual/overview.md: -------------------------------------------------------------------------------- 1 | # Overview 2 | -------------------------------------------------------------------------------- /manual/tutorial.md: -------------------------------------------------------------------------------- 1 | #Tutorial 2 | -------------------------------------------------------------------------------- /manual/usage.md: -------------------------------------------------------------------------------- 1 | # Usage 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahnz/redux-socket.io-connect/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahnz/redux-socket.io-connect/HEAD/src/index.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------