Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mateuszitelli/hypercube
Hypercube communication test
https://github.com/mateuszitelli/hypercube
Last synced: about 1 month ago
JSON representation
Hypercube communication test
- Host: GitHub
- URL: https://github.com/mateuszitelli/hypercube
- Owner: MateusZitelli
- Created: 2014-12-08T19:09:31.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-08T19:13:55.000Z (about 10 years ago)
- Last Synced: 2024-04-15T22:34:11.387Z (9 months ago)
- Language: JavaScript
- Size: 113 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hypercube communication test
This is a simple test using Node.JS to create a distributed system based on the
hypercube architecture.When It's executed many processes are spawned recursively for the hypercube
generation. After the spawning phase all the process wait a message via sockets,
when It arrives the process prints the received data and then replicate it for
other adjacent process in the hypercube.# Execution
First you need to install Node.JS and npm, it was tested with the version
v0.10.31.```sh
$ npm install
$ node hc.js -d
```Then just connect with the process 0 by the port 8100 and send whatever you
want.```sh
$ telnet localhost 8100
#vamosprogramar
```