A proof of concept implementing a block chain data structure.
This chain currently functions as generic, networking enabled chain of data. WebSockets are used for p2p communication and HTTP is used for user control.
curl http://localhost:3001/blocks
curl -H "Content-type:application/json" --data '{"data" : "Some data to the first block"}' http://localhost:3001/mineBlock
curl -H "Content-type:application/json" --data '{"peer" : "ws://localhost:6001"}' http://localhost:3001/addPeer
curl http://localhost:3001/peers