├── .gitattributes ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── example ├── README.md ├── index.js ├── package-lock.json ├── package.json └── tcp.js ├── index.js ├── log.js ├── package.json ├── raft.md └── test ├── api.js ├── cluster.js ├── log.js ├── raft.js └── replication.js /.gitattributes: -------------------------------------------------------------------------------- 1 | package-lock.json binary 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unshiftio/liferaft/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unshiftio/liferaft/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unshiftio/liferaft/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unshiftio/liferaft/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unshiftio/liferaft/HEAD/README.md -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unshiftio/liferaft/HEAD/example/README.md -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unshiftio/liferaft/HEAD/example/index.js -------------------------------------------------------------------------------- /example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unshiftio/liferaft/HEAD/example/package-lock.json -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unshiftio/liferaft/HEAD/example/package.json -------------------------------------------------------------------------------- /example/tcp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unshiftio/liferaft/HEAD/example/tcp.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unshiftio/liferaft/HEAD/index.js -------------------------------------------------------------------------------- /log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unshiftio/liferaft/HEAD/log.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unshiftio/liferaft/HEAD/package.json -------------------------------------------------------------------------------- /raft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unshiftio/liferaft/HEAD/raft.md -------------------------------------------------------------------------------- /test/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unshiftio/liferaft/HEAD/test/api.js -------------------------------------------------------------------------------- /test/cluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unshiftio/liferaft/HEAD/test/cluster.js -------------------------------------------------------------------------------- /test/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unshiftio/liferaft/HEAD/test/log.js -------------------------------------------------------------------------------- /test/raft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unshiftio/liferaft/HEAD/test/raft.js -------------------------------------------------------------------------------- /test/replication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unshiftio/liferaft/HEAD/test/replication.js --------------------------------------------------------------------------------