Sem descrição

ericz 19cc170d08 mo docs há 12 anos atrás
bin ec5ec82e8e socket abstraction há 12 anos atrás
deps 19cc170d08 mo docs há 12 anos atrás
dist 52af2bedbe build há 12 anos atrás
docs f393640a50 mo docs há 12 anos atrás
examples 7437cd1091 username há 12 anos atrás
lib 52af2bedbe build há 12 anos atrás
.gitignore 55c39fa795 removed demo folder há 12 anos atrás
.gitmodules f6741b727f module update há 12 anos atrás
LICENSE 332f2d486f license há 12 anos atrás
Makefile ea9a3207cb submodules, gitignore, make há 12 anos atrás
README.md 19cc170d08 mo docs há 12 anos atrás
package.json a8ed5c84e4 actually use config há 12 anos atrás

README.md

PeerJS: Peer-to-peer data in the browser

##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.

Peer

 <script>
   var peer = new Peer('someid', {key: 'apikey'});
   peer.on('connection', function(conn) {
     conn.on('data', function(data){
       // Will print 'hi!'
       console.log(data);
     });
   });
 </script>

Connecting peer

 <script>
   var peer = new Peer('anotherid', {key: 'apikey'});
   var conn = peer.connect('someid');
   conn.on('open', function(){
     conn.send('hi!');
   }); 
 </script>`