blob: ace976bab58199d8e764aaa8713990cf0db72d25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
gnunet-web
==========
This is a port of [GNUnet] to the browser using [WebRTC] for peer-to-peer
communication.
Roadmap
-------
* Compile GNUnet using [emscripten].
* gnunet-service-transport.js - Done, with HTTP(S) transport.
* gnunet-service-ats.js - Done.
* gnunet-daemon-topology.js - Done.
* gnunet-service-core.js - Done.
* gnunet-service-nse.js - Done, PoW not persistent yet.
* gnunet-service-dht.js - Done.
* gnunet-service-cadet.js - Done.
* gnunet-service-datastore.js - Building with heap backend plugin.
* Needs an [indexedDB] backend plugin.
* gnunet-service-fs.js - To do.
* Write a minimal UI that allows publishing, searching, and downloading via the
file-sharing service.
* Release alpha.
* Write a WebRTC transport plugin.
* Implement [RFC3264] over GNUnet.
What You Can Do Now
-------------------
### Try out the RTCPeerConnection demo ###
0. Execute `lein run`
1. Open two browsers to http://localhost:3000/ (let's call them Alice and Bob).
2. Alice presses "Create Offer" and waits a bit for ICE candidates to be
collected.
3. Alice sends the Local Description to Bob.
4. Bob enters the description into the Remote Description box and presses
"Set Remote Description as Offer".
5. Bob presses "Create Answer" and waits a bit for ICE candidates to be
collected.
6. Bob sends the Local Description to Alice.
7. Alice enters the description into the Remote Description box and presses
"Set Remote Description as Answer".
8. Alice and Bob wait for the ICE State to be connected.
9. Alice and Bob can send messages with the input box at the bottom of the page.
### Compile GNUnet with emscripten ###
0. Execute `./build-gnunet.sh`
1. Execute `lein run`
2. Open http://localhost:3000/gnunet.html
Each GNUnet service is running in its own [Web Worker] thread. The APIs used by
the services to schedule tasks, communicate with each other, and load plugins
are implemented as emscripten js libraries.
To debug a shared worker in chrome open chrome://inspect and click the
"inspect" link next to the http://localhost:3000/js/gnunet-service-transport.js
shared worker.
[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/
[indexeddb]: http://www.w3.org/TR/IndexedDB/
|