ericz 12 tahun lalu
induk
melakukan
51a45cfb8a
1 mengubah file dengan 12 tambahan dan 3 penghapusan
  1. 12 3
      README.md

+ 12 - 3
README.md

@@ -1,11 +1,16 @@
 # PeerJS: Peer-to-peer data in the browser #
 
+PeerJS provides a complete, configurable, and easy-to-use peer-to-peer data API built on top of WebRTC.   
+Each peer simply provides a identifier with which other peers using the same API key can connect.
+
 ##[http://peerjs.com](http://peerjs.com)
 
-PeerJS wraps the WebRTC implementation to provide a complete, configurable, and easy-to-use peer-to-peer data API. Each peer simply provides a identifier with which other peers using the same API key can connect.
 
+**Include the library**
+
+     <script src="http://cdn.peerjs.com/0/peer.js"></script>
 
-Peer
+**Peer**
 
      <script>
        var peer = new Peer('someid', {key: 'apikey'});
@@ -17,7 +22,7 @@ Peer
        });
      </script>
 
-Connecting peer
+**Connecting peer**
 
      <script>
        var peer = new Peer('anotherid', {key: 'apikey'});
@@ -28,7 +33,11 @@ Connecting peer
      </script>`
 
 
+### [Getting started](http://peerjs.com/start)
+
+### [Browser compatibility status](http://peerjs.com/status)
 
+### [PeerServer](https://github.com/peers/peer-server)