├── .gitignore ├── README.md ├── cluster.js ├── example.js ├── machine.json ├── package.json ├── src ├── helper.js └── main.js └── test-size.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainJS/brain-cluster/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainJS/brain-cluster/HEAD/README.md -------------------------------------------------------------------------------- /cluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainJS/brain-cluster/HEAD/cluster.js -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainJS/brain-cluster/HEAD/example.js -------------------------------------------------------------------------------- /machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainJS/brain-cluster/HEAD/machine.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainJS/brain-cluster/HEAD/package.json -------------------------------------------------------------------------------- /src/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainJS/brain-cluster/HEAD/src/helper.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainJS/brain-cluster/HEAD/src/main.js -------------------------------------------------------------------------------- /test-size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainJS/brain-cluster/HEAD/test-size.js --------------------------------------------------------------------------------