diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -33,19 +33,19 @@ What You Can Do Now ### Compile GNUnet with emscripten ### 0. Install [emscripten] and add it to your `PATH`. 1. Execute `./build-gnunet.sh` -2. Load src/peerinfo/.libs/gnunet-service-peerinfo.html in a browser. +2. Execute `lein run` +3. Open http://localhost:3000/gnunet.html We're a long way from running GNUnet in the browser. Currently we have the -peerinfo service linked into an HTML file which displays error messages in a -text box. +peerinfo service linked into a javascript file which will load but has no +way of receiving commands. Eventually we will have each GNUnet service running in its own [Web Worker] -thread. The services normally communicate through UNIX sockets which we will -implement using [Web Messaging]. +thread. The APIs used by the services to schedule tasks and communicate with +each other is being implemented in javascript. [gnunet]: https://gnunet.org [webrtc]: http://www.webrtc.org [emscripten]: https://github.com/kripken/emscripten [rfc3264]: http://www.ietf.org/rfc/rfc3264.txt [web worker]: http://www.w3.org/TR/workers/ - [web messaging]: http://www.w3.org/TR/webmessaging/ |