index.html 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753
  1. <head>
  2. <title>PeerJS Documentation</title>
  3. <meta name="viewport" content="width=device-width, maximum-scale=1">
  4. <link href='https://fonts.googleapis.com/css?family=Lato:300,400,700,900' rel='stylesheet' type='text/css'>
  5. <link href="/css/docs.css" rel="stylesheet" type="text/css">
  6. <script type="text/javascript" src="/js/jquery.min.js"></script>
  7. <script type="text/javascript" src="/js/docs.js"></script>
  8. </head>
  9. <body>
  10. <section class="start">
  11. <h1>
  12. <a href="/">PeerJS</a>
  13. <span class="title">docs</span>
  14. </h1>
  15. <p>
  16. <br>PeerJS simplifies peer-to-peer data, video, and audio calls.</p>
  17. <p>This guide will show you the basic concepts of the PeerJS API.</p>
  18. <h2>Setup</h2>
  19. <h3>1. Include the Javascript client</h3>
  20. <p>Add the PeerJS client library to your webpage.</p>
  21. <pre>&lt;script src="https://unpkg.com/peerjs@1.3.1/dist/peerjs.min.js"&gt;&lt;/script&gt;</pre>
  22. <p>If you prefer, you can host it yourself:
  23. <a download href="https://unpkg.com/peerjs@1.3.1/dist/peerjs.min.js">peerjs.min.js</a>, or
  24. <a href="https://github.com/peers/peerjs">fork us on Github</a>.</p>
  25. <h3>2. Create the Peer object</h3>
  26. <p>The Peer object is where we create and receive connections.</p>
  27. <pre>var peer = new Peer();</pre>
  28. <p>PeerJS uses PeerServer for session
  29. metadata and candidate signaling. You can also
  30. <a href="https://github.com/peers/peerjs-server">run your own PeerServer</a> if you don't like the cloud.</p>
  31. <p>We're now ready to start making connections!</p>
  32. <h2>Usage</h2>
  33. <p>Every Peer object is assigned a random, unique ID when it's created.</p>
  34. <pre>peer.on('open', function(id) {
  35. console.log('My peer ID is: ' + id);
  36. });</pre>
  37. <p>When we want to connect to another peer, we'll need to know their peer id. You're in charge of communicating the
  38. peer
  39. IDs between users of your site. Optionally, you can pass in your own IDs to the
  40. <a href="#peer">
  41. <code>Peer</code> constructor
  42. </a>.</p>
  43. <p>Read the
  44. <a href="#peer">Peer API reference</a> for complete information on its
  45. <a href="#peer-options">options</a>, methods,
  46. <a href="#peeron">events</a>, and
  47. <a href="#peeron-error">error handling</a>.</p>
  48. <h3>Data connections</h3>
  49. <p>Start a data connection by calling
  50. <code>peer.connect</code> with the peer ID of the destination peer. Anytime another peer attempts to connect to
  51. your peer ID, you'll receive
  52. a
  53. <code>connection</code> event. </p>
  54. <div class="two-col">
  55. <div class="col col-header">Start connection</div>
  56. <div class="col col-header">Receive connection</div>
  57. <div class="col">
  58. <pre>var conn = peer.connect('dest-peer-id');</pre>
  59. </div>
  60. <div class="col">
  61. <pre>peer.on('connection', function(conn) { ... });</pre>
  62. </div>
  63. <div class="clear"></div>
  64. </div>
  65. <p>
  66. <code>peer.connect</code> and the callback of the
  67. <code>connection</code> event will both provide a
  68. <code>DataConnection</code> object. This object will allow you to send and receive data:</p>
  69. <pre>conn.on('open', function() {
  70. // Receive messages
  71. conn.on('data', function(data) {
  72. console.log('Received', data);
  73. });
  74. // Send messages
  75. conn.send('Hello!');
  76. });</pre>
  77. <p>Read the
  78. <a href="#dataconnection">DataConnection API reference</a> for complete details on its methods and events.</p>
  79. <h3>Video/audio calls</h3>
  80. <p>Call another peer by calling
  81. <code>peer.call</code> with the peer ID of the destination peer. When a peer calls you, the
  82. <code>call</code> event is emitted.</p>
  83. <p>Unlike data connections, when receiving a
  84. <code>call</code> event, the call must be answered or no connection is established.</p>
  85. <div class="two-col">
  86. <div class="col col-header">Start call</div>
  87. <div class="col col-header">Answer call</div>
  88. <div class="col">
  89. <pre>// Call a peer, providing our mediaStream
  90. var call = peer.call('dest-peer-id',
  91. mediaStream);
  92. </pre>
  93. </div>
  94. <div class="col">
  95. <pre>peer.on('call', function(call) {
  96. // Answer the call, providing our mediaStream
  97. call.answer(mediaStream);
  98. });</pre>
  99. </div>
  100. <div class="clear"></div>
  101. </div>
  102. <p>When calling or answering a call, a MediaStream should be provided. The MediaStream represents the local video
  103. (webcam)
  104. or audio stream and can be obtained with some (browser-specific) version of
  105. <a href="https://developer.mozilla.org/en-US/docs/Web/API/Navigator.getUserMedia">
  106. <code>navigator.getUserMedia</code>
  107. </a>. When answering a call, the MediaStream is optional and if none is provided then a one-way call is
  108. established.
  109. Once the call is established, its
  110. <code>open</code> property is set to true.</p>
  111. <p>
  112. <code>peer.call</code> and the callback of the
  113. <code>call</code> event provide a MediaConnection object. The MediaConnection object itself emits a
  114. <code>stream</code> event whose callback includes the video/audio stream of the other peer.</p>
  115. <pre>call.on('stream', function(stream) {
  116. // `stream` is the MediaStream of the remote peer.
  117. // Here you'd add it to an HTML video/canvas element.
  118. });</pre>
  119. <p>Read the
  120. <a href="#mediaconnection">MediaConnection API reference</a> for complete details on its methods and events.</p>
  121. <h2>Common questions</h2>
  122. <h3>What kind of data can I send?</h3>
  123. <p>PeerJS has the
  124. <a href="https://github.com/binaryjs/js-binarypack">BinaryPack</a>
  125. serialization format built-in. This means you can send any JSON type as well as binary Blobs and ArrayBuffers.
  126. Simply send
  127. arbitrary data and you'll get it out the other side:</p>
  128. <pre>
  129. conn.send({
  130. strings: 'hi!',
  131. numbers: 150,
  132. arrays: [1,2,3],
  133. evenBinary: new Blob([1,2,3]),
  134. andMore: {bool: true}
  135. });</pre>
  136. <h3>Are there any caveats?</h3>
  137. <p>A small percentage of users are behind symmetric NATs. When two symmetric NAT users try to connect to each other,
  138. NAT
  139. traversal is impossible and no connection can be made. A workaround is to proxy through the connection through a
  140. TURN
  141. server. The PeerServer cloud service provides a free TURN server. This will allow your PeerJS app to work
  142. seamlessly for this situation</p>
  143. <h3>How do I use a TURN server?</h3>
  144. <p>When creating your Peer object, pass in the ICE servers as the config key of the options hash.</p>
  145. <pre>
  146. var peer = new Peer({
  147. config: {'iceServers': [
  148. { url: 'stun:stun.l.google.com:19302' },
  149. { url: 'turn:homeo@turn.bistri.com:80', credential: 'homeo' }
  150. ]} /* Sample servers, please use appropriate ones */
  151. });
  152. </pre>
  153. <h3>What if my peer has not yet connected to the server when I attempt to connect to it?</h3>
  154. <p>When you try to connect to a peer, PeerServer will hold a connection offer for up to 5 seconds before rejecting
  155. it. This
  156. is useful if you want to reconnect to a peer as it disconnects and reconnects rapidly between web pages.</p>
  157. <h3>Why am I unable to connect?</h3>
  158. <p>You could be behind a symmetric NAT, in which case you'll need to set up a TURN server.</p>
  159. <p>Another possible issue is your network blocking port 443, which the PeerServer cloud runs on. In this you must
  160. use your
  161. own PeerServer running on an appropriate port instead of the cloud service.</p>
  162. <h3>What about latency/bandwidth?</h3>
  163. <p>Data sent between the two peers do not touch any other servers, so the connection speed is limited only by the
  164. upload
  165. and download rates of the two peers. This also means you don't have the additional latency of an intermediary
  166. server.</p>
  167. <p>The latency to establish a connection can be split into two components: the brokering of data and the
  168. identification
  169. of clients. PeerJS has been designed to minimize the time you spend in these two areas. For brokering, data is
  170. sent
  171. through an XHR streaming request before a WebSocket connection is established, then through WebSockets. For client
  172. identification, we provide you the ability to pass in your own peer IDs, thus eliminating the RTT for retrieving
  173. an
  174. ID from the server.</p>
  175. <h3>More questions?</h3>
  176. <p>
  177. <a href="https://t.me/joinchat/ENhPuhTvhm8WlIxTjQf7Og">Discuss PeerJS on our Telegram channel.</a>
  178. <br>
  179. <br>
  180. </p>
  181. </section>
  182. <header class="left">
  183. <h2>API Reference
  184. <a class="hide icon">&laquo;</a>
  185. <a class="show icon">&raquo;</a>
  186. </h2>
  187. </header>
  188. <header class="right">
  189. <h2>Getting Started</h2>
  190. </header>
  191. <section class="api">
  192. <div class="toplevel " id="peer"><span class="name"><a href="#peer">Peer</a><span
  193. class="tag type constructor">constructor</span><span class="snippet">const peer = new Peer([id],
  194. [options]);</span></span>
  195. <p class="description">A peer can connect to other peers and listen for connections.</p>
  196. <div class="children">
  197. <div class="child " id="peer-id"><span class="name"><a href="#peer-id"><span class="optional"><span
  198. class="bracket">[</span>id<span class="bracket">]</span></span></a><span
  199. class="tag type string">string</span></span>
  200. <p class="description">Other peers can connect to this peer using the provided ID. If no ID is given, one will
  201. be generated by the brokering server. The ID must start and end with an alphanumeric character (lower or
  202. upper case character or a digit). In the middle of the ID spaces, dashes (-) and underscores (_) are
  203. allowed.<span class='warn'>It's not recommended that you use this ID to identify peers, as it's meant to be
  204. used for brokering connections only. You're recommended to set the <a
  205. href='#peerconnect-options'><code>metadata</code></a> option to send other identifying
  206. information.</span></p>
  207. </div>
  208. <div class="child " id="peer-options"><span class="name"><a href="#peer-options"><span class="optional"><span
  209. class="bracket">[</span>options<span class="bracket">]</span></span></a><span
  210. class="tag type object">object</span></span>
  211. <div class="children">
  212. <div class="child " id="peer-options-key"><span class="name"><a href="#peer-options-key">key</a><span
  213. class="tag type string">string</span></span>
  214. <p class="description">API key for the cloud PeerServer. This is not used for servers other than
  215. <code>0.peerjs.com</code>.<span class='warn'>PeerServer cloud runs on port 443. Please ensure it is not
  216. blocked or consider running your own PeerServer instead.</span></p>
  217. </div>
  218. <div class="child " id="peer-options-host"><span class="name"><a href="#peer-options-host">host</a><span
  219. class="tag type string">string</span></span>
  220. <p class="description">Server host. Defaults to <code>0.peerjs.com</code>. Also accepts <code>'/'</code>
  221. to signify relative hostname.</p>
  222. </div>
  223. <div class="child " id="peer-options-port"><span class="name"><a href="#peer-options-port">port</a><span
  224. class="tag type number">number</span></span>
  225. <p class="description">Server port. Defaults to <code>443</code>.</p>
  226. </div>
  227. <div class="child " id="peer-options-pinginterval"><span class="name"><a
  228. href="#peer-options-pinginterval">pingInterval</a><span class="tag type number">number</span></span>
  229. <p class="description">Ping interval in ms. Defaults to <code>5000</code>.</p>
  230. </div>
  231. <div class="child " id="peer-options-path"><span class="name"><a href="#peer-options-path">path</a><span
  232. class="tag type string">string</span></span>
  233. <p class="description">The path where your self-hosted PeerServer is running. Defaults to
  234. <code>'/'</code>.</p>
  235. </div>
  236. <div class="child " id="peer-options-secure"><span class="name"><a
  237. href="#peer-options-secure">secure</a><span class="tag type boolean">boolean</span></span>
  238. <p class="description"><code>true</code> if you're using SSL.<span class='tip'>Note that our cloud-hosted
  239. server and assets may not support SSL.</span></p>
  240. </div>
  241. <div class="child " id="peer-options-config"><span class="name"><a
  242. href="#peer-options-config">config</a><span class="tag type object">object</span></span>
  243. <p class="description">Configuration hash passed to RTCPeerConnection. This hash contains any custom
  244. ICE/TURN server configuration. Defaults to
  245. <code>{ 'iceServers': [{ 'urls': 'stun:stun.l.google.com:19302' }, { 'urls': 'turn:0.peerjs.com:3478', username: 'peerjs', credential: 'peerjsp' }], 'sdpSemantics': 'unified-plan' }</code>
  246. </p>
  247. </div>
  248. <div class="child " id="peer-options-debug"><span class="name"><a href="#peer-options-debug">debug</a><span
  249. class="tag type number">number</span></span>
  250. <p class="description">Prints log messages depending on the debug level passed in. Defaults to
  251. <code>0</code>.</p>
  252. <div class="children">
  253. <div class="child " id="peer-options-debug-0"><span class="name"><a
  254. href="#peer-options-debug-0">0</a></span>
  255. <p class="description">Prints no logs.</p>
  256. </div>
  257. <div class="child " id="peer-options-debug-1"><span class="name"><a
  258. href="#peer-options-debug-1">1</a></span>
  259. <p class="description">Prints only errors.</p>
  260. </div>
  261. <div class="child " id="peer-options-debug-2"><span class="name"><a
  262. href="#peer-options-debug-2">2</a></span>
  263. <p class="description">Prints errors and warnings.</p>
  264. </div>
  265. <div class="child " id="peer-options-debug-3"><span class="name"><a
  266. href="#peer-options-debug-3">3</a></span>
  267. <p class="description">Prints all logs.</p>
  268. </div>
  269. </div>
  270. </div>
  271. </div>
  272. </div>
  273. </div>
  274. </div>
  275. <div class="toplevel " id="peerconnect"><span class="name"><a href="#peerconnect">peer.connect</a><span
  276. class="tag type method">method</span><span class="snippet">const <a href='#dataconnection'>dataConnection</a>
  277. = peer.connect(id, [options]);</span></span>
  278. <p class="description">Connects to the remote peer specified by <code>id</code> and returns a data connection. Be
  279. sure to listen on the <a href='#peeron-error'><code>error</code></a> event in case the connection fails.</p>
  280. <div class="children">
  281. <div class="child " id="peerconnect-id"><span class="name"><a href="#peerconnect-id">id</a><span
  282. class="tag type string">string</span></span>
  283. <p class="description">The brokering ID of the remote peer (their <a href='#peerid'><code>peer.id</code></a>).
  284. </p>
  285. </div>
  286. <div class="child " id="peerconnect-options"><span class="name"><a href="#peerconnect-options"><span
  287. class="optional"><span class="bracket">[</span>options<span class="bracket">]</span></span></a><span
  288. class="tag type object">object</span></span>
  289. <div class="children">
  290. <div class="child " id="peerconnect-options-label"><span class="name"><a
  291. href="#peerconnect-options-label">label</a><span class="tag type string">string</span></span>
  292. <p class="description">A unique label by which you want to identify this data connection. If left
  293. unspecified, a label will be generated at random. Can be accessed with <a
  294. href='#dataconnection-label'><code>dataConnection.label</code></a>.</p>
  295. </div>
  296. <div class="child " id="peerconnect-options-metadata"><span class="name"><a
  297. href="#peerconnect-options-metadata">metadata</a></span>
  298. <p class="description">Metadata associated with the connection, passed in by whoever initiated the
  299. connection. Can be accessed with <a
  300. href='#dataconnection-metadata'><code>dataConnection.metadata</code></a>. Can be any serializable
  301. type.</p>
  302. </div>
  303. <div class="child " id="peerconnect-options-serialization"><span class="name"><a
  304. href="#peerconnect-options-serialization">serialization</a><span
  305. class="tag type string">string</span></span>
  306. <p class="description">Can be <code>binary</code> (default), <code>binary-utf8</code>, <code>json</code>,
  307. or <code>none</code>. Can be accessed with <a
  308. href='#dataconnection-serialization'><code>dataConnection.serialization</code></a>.<span
  309. class='tip'><code>binary-utf8</code> will take a performance hit because of the way UTF8 strings are
  310. packed into binary format.</span></p>
  311. </div>
  312. <div class="child " id="peerconnect-options-reliable"><span class="name"><a
  313. href="#peerconnect-options-reliable">reliable</a><span class="tag type boolean">boolean</span></span>
  314. <p class="description">Whether the underlying data channels should be reliable (e.g. for large file
  315. transfers) or not (e.g. for gaming or streaming). Defaults to <code>false</code>.<span
  316. class='warn'>Setting reliable to true will use a shim for incompatible browsers (Chrome 30 and below
  317. only) and thus may not offer full performance.</span></p>
  318. </div>
  319. </div>
  320. </div>
  321. </div>
  322. </div>
  323. <div class="toplevel " id="peercall"><span class="name"><a href="#peercall">peer.call</a><span
  324. class="tag type method">method</span><span class="snippet">const <a
  325. href='#mediaconnection'>mediaConnection</a> = peer.call(id, stream, [options]);</span></span>
  326. <p class="description">Calls the remote peer specified by <code>id</code> and returns a media connection. Be sure
  327. to listen on the <a href='#peeron-error'><code>error</code></a> event in case the connection fails.</p>
  328. <div class="children">
  329. <div class="child " id="peercall-id"><span class="name"><a href="#peercall-id">id</a><span
  330. class="tag type string">string</span></span>
  331. <p class="description">The brokering ID of the remote peer (their <a href='#peerid'><code>peer.id</code></a>).
  332. </p>
  333. </div>
  334. <div class="child " id="peercall-stream"><span class="name"><a href="#peercall-stream">stream</a><span
  335. class="tag type MediaStream">MediaStream</span></span>
  336. <p class="description">The caller's media stream</p>
  337. </div>
  338. <div class="child " id="peercall-options"><span class="name"><a href="#peercall-options"><span
  339. class="optional"><span class="bracket">[</span>options<span class="bracket">]</span></span></a><span
  340. class="tag type object">object</span></span>
  341. <div class="children">
  342. <div class="child " id="peercall-options-metadata"><span class="name"><a
  343. href="#peercall-options-metadata">metadata</a></span>
  344. <p class="description">Metadata associated with the connection, passed in by whoever initiated the
  345. connection. Can be accessed with <a
  346. href='#mediaconnection-metadata'><code>mediaConnection.metadata</code></a>. Can be any serializable
  347. type.</p>
  348. </div>
  349. <div class="child " id="peercall-options-sdptransform"><span class="name"><a
  350. href="#peercall-options-sdptransform">sdpTransform</a><span
  351. class="tag type method">method</span></span>
  352. <p class="description">Function which runs before create offer to modify sdp offer message.</p>
  353. </div>
  354. </div>
  355. </div>
  356. </div>
  357. </div>
  358. <div class="toplevel " id="peeron"><span class="name"><a href="#peeron">peer.on</a><span
  359. class="tag type method">method</span><span class="snippet">peer.on(event, callback);</span></span>
  360. <p class="description">Set listeners for peer events.</p>
  361. <div class="children">
  362. <div class="child " id="peeron-open"><span class="name"><a href="#peeron-open">'open'</a><span
  363. class="tag type event">event</span><span class="snippet">peer.on('open', function(id) { ...
  364. });</span></span>
  365. <p class="description">Emitted when a connection to the PeerServer is established. You may use the peer before
  366. this is emitted, but messages to the server will be queued. <code>id</code> is the brokering ID of the peer
  367. (which was either provided in the constructor or assigned by the server).<span class='tip'>You should not
  368. wait for this event before connecting to other peers if connection speed is important.</span></p>
  369. </div>
  370. <div class="child " id="peeron-connection"><span class="name"><a href="#peeron-connection">'connection'</a><span
  371. class="tag type event">event</span><span class="snippet">peer.on('connection', function(<a
  372. href='#dataconnection'>dataConnection</a>) { ... });</span></span>
  373. <p class="description">Emitted when a new data connection is established from a remote peer.</p>
  374. </div>
  375. <div class="child " id="peeron-call"><span class="name"><a href="#peeron-call">'call'</a><span
  376. class="tag type event">event</span><span class="snippet">peer.on('call', function(<a
  377. href='#mediaconnection'>mediaConnection</a>) { ... });</span></span>
  378. <p class="description">Emitted when a remote peer attempts to call you. The emitted
  379. <code>mediaConnection</code> is not yet active; you must first answer the call (<a
  380. href='#mediaconnection-answer'><code>mediaConnection.answer([stream]);</code></a>). Then, you can listen
  381. for the <a href='#mediaconnection-on'><code>stream</code></a> event.</p>
  382. </div>
  383. <div class="child " id="peeron-close"><span class="name"><a href="#peeron-close">'close'</a><span
  384. class="tag type event">event</span><span class="snippet">peer.on('close', function() { ...
  385. });</span></span>
  386. <p class="description">Emitted when the peer is <a href='#peerdestroy'>destroyed</a> and can no longer accept
  387. or create any new connections. At this time, the peer's connections will all be closed. <span class='tip'>To
  388. be extra certain that peers clean up correctly, we recommend calling <code>peer.destroy()</code> on a peer
  389. when it is no longer needed.</span></p>
  390. </div>
  391. <div class="child " id="peeron-disconnected"><span class="name"><a
  392. href="#peeron-disconnected">'disconnected'</a><span class="tag type event">event</span><span
  393. class="snippet">peer.on('disconnected', function() { ... });</span></span>
  394. <p class="description">Emitted when the peer is disconnected from the signalling server, either <a
  395. href='#peerdisconnect'>manually</a> or because the connection to the signalling server was lost. When a
  396. peer is disconnected, its existing connections will stay alive, but the peer cannot accept or create any new
  397. connections. You can reconnect to the server by calling <a
  398. href='#peerreconnect'><code>peer.reconnect()</code></a>.</p>
  399. </div>
  400. <div class="child " id="peeron-error"><span class="name"><a href="#peeron-error">'error'</a><span
  401. class="tag type event">event</span><span class="snippet">peer.on('error', function(err) { ...
  402. });</span></span>
  403. <p class="description">Errors on the peer are <strong>almost always fatal</strong> and will destroy the peer.
  404. Errors from the underlying socket and PeerConnections are forwarded here.<br><br>These come in the following
  405. <code>err.type</code> flavors:</p>
  406. <div class="children">
  407. <div class="child fatal " id="peeron-error-browser-incompatible"><span class="name"><a
  408. href="#peeron-error-browser-incompatible">'browser-incompatible'</a><span
  409. class="tag type Error">Error</span><span class="tag fatal">fatal</span></span>
  410. <p class="description">The client's browser does not support some or all WebRTC features that you are
  411. trying to use.</p>
  412. </div>
  413. <div class="child " id="peeron-error-disconnected"><span class="name"><a
  414. href="#peeron-error-disconnected">'disconnected'</a><span class="tag type Error">Error</span></span>
  415. <p class="description">You've already disconnected this peer from the server and can no longer make any
  416. new connections on it.</p>
  417. </div>
  418. <div class="child fatal " id="peeron-error-invalid-id"><span class="name"><a
  419. href="#peeron-error-invalid-id">'invalid-id'</a><span class="tag type Error">Error</span><span
  420. class="tag fatal">fatal</span></span>
  421. <p class="description">The ID passed into the Peer constructor contains illegal characters.</p>
  422. </div>
  423. <div class="child fatal " id="peeron-error-invalid-key"><span class="name"><a
  424. href="#peeron-error-invalid-key">'invalid-key'</a><span class="tag type Error">Error</span><span
  425. class="tag fatal">fatal</span></span>
  426. <p class="description">The API key passed into the Peer constructor contains illegal characters or is not
  427. in the system (cloud server only).</p>
  428. </div>
  429. <div class="child " id="peeron-error-network"><span class="name"><a
  430. href="#peeron-error-network">'network'</a><span class="tag type Error">Error</span></span>
  431. <p class="description">Lost or cannot establish a connection to the signalling server.</p>
  432. </div>
  433. <div class="child " id="peeron-error-peer-unavailable"><span class="name"><a
  434. href="#peeron-error-peer-unavailable">'peer-unavailable'</a><span
  435. class="tag type Error">Error</span></span>
  436. <p class="description">The peer you're trying to connect to does not exist.</p>
  437. </div>
  438. <div class="child fatal " id="peeron-error-ssl-unavailable"><span class="name"><a
  439. href="#peeron-error-ssl-unavailable">'ssl-unavailable'</a><span
  440. class="tag type Error">Error</span><span class="tag fatal">fatal</span></span>
  441. <p class="description">PeerJS is being used securely, but the cloud server does not support SSL. Use a
  442. custom PeerServer.</p>
  443. </div>
  444. <div class="child fatal " id="peeron-error-server-error"><span class="name"><a
  445. href="#peeron-error-server-error">'server-error'</a><span class="tag type Error">Error</span><span
  446. class="tag fatal">fatal</span></span>
  447. <p class="description">Unable to reach the server.</p>
  448. </div>
  449. <div class="child fatal " id="peeron-error-socket-error"><span class="name"><a
  450. href="#peeron-error-socket-error">'socket-error'</a><span class="tag type Error">Error</span><span
  451. class="tag fatal">fatal</span></span>
  452. <p class="description">An error from the underlying socket.</p>
  453. </div>
  454. <div class="child fatal " id="peeron-error-socket-closed"><span class="name"><a
  455. href="#peeron-error-socket-closed">'socket-closed'</a><span class="tag type Error">Error</span><span
  456. class="tag fatal">fatal</span></span>
  457. <p class="description">The underlying socket closed unexpectedly.</p>
  458. </div>
  459. <div class="child sometimes_fatal " id="peeron-error-unavailable-id"><span class="name"><a
  460. href="#peeron-error-unavailable-id">'unavailable-id'</a><span class="tag type Error">Error</span><span
  461. class="tag sometimes_fatal">sometimes fatal</span></span>
  462. <p class="description">The ID passed into the Peer constructor is already taken.<span class='warn'>This
  463. error is not fatal if your peer has open peer-to-peer connections. This can happen if you attempt to
  464. <a href='#peerreconnect'>reconnect</a> a peer that has been <a href='#peerdisconnect'>disconnected
  465. from the server</a>, but its old ID has now been taken.</span></p>
  466. </div>
  467. <div class="child " id="peeron-error-webrtc"><span class="name"><a
  468. href="#peeron-error-webrtc">'webrtc'</a><span class="tag type Error">Error</span></span>
  469. <p class="description">Native WebRTC errors.</p>
  470. </div>
  471. </div>
  472. </div>
  473. </div>
  474. </div>
  475. <div class="toplevel " id="peerdisconnect"><span class="name"><a href="#peerdisconnect">peer.disconnect</a><span
  476. class="tag type method">method</span><span class="snippet">peer.disconnect();</span></span>
  477. <p class="description">Close the connection to the server, leaving all existing data and media connections intact.
  478. <a href='#peerdisconnected'><code>peer.disconnected</code></a> will be set to <code>true</code> and the <a
  479. href='#peeron-disconnected'><code>disconnected</code></a> event will fire.<span class='warn'>This cannot be
  480. undone; the respective peer object will no longer be able to create or receive any connections and its ID will
  481. be forfeited on the (cloud) server.</span></p>
  482. </div>
  483. <div class="toplevel " id="peerreconnect"><span class="name"><a href="#peerreconnect">peer.reconnect</a><span
  484. class="tag type method">method</span><span class="snippet">peer.reconnect();</span></span>
  485. <p class="description">Attempt to reconnect to the server with the peer's old ID. Only <a
  486. href='#peerdisconnect'>disconnected peers</a> can be reconnected. Destroyed peers cannot be reconnected. If
  487. the connection fails (as an example, if the peer's old ID is now taken), the peer's existing connections will
  488. not close, but any associated errors events will fire.</p>
  489. </div>
  490. <div class="toplevel " id="peerdestroy"><span class="name"><a href="#peerdestroy">peer.destroy</a><span
  491. class="tag type method">method</span><span class="snippet">peer.destroy();</span></span>
  492. <p class="description">Close the connection to the server and terminate all existing connections. <a
  493. href='#peerdestroyed'><code>peer.destroyed</code></a> will be set to <code>true</code>.<span class='warn'>This
  494. cannot be undone; the respective peer object will no longer be able to create or receive any connections, its
  495. ID will be forfeited on the (cloud) server, and all of its data and media connections will be closed.</span>
  496. </p>
  497. </div>
  498. <div class="toplevel " id="peerid"><span class="name"><a href="#peerid">peer.id</a><span
  499. class="tag type string">string</span></span>
  500. <p class="description">The brokering ID of this peer. If no ID was specified in <a href='#peer'>the
  501. constructor</a>, this will be <code>undefined</code> until the <a href='#peeron-open'><code>open</code></a>
  502. event is emitted.</p>
  503. </div>
  504. <div class="toplevel " id="peerconnections"><span class="name"><a href="#peerconnections">peer.connections</a><span
  505. class="tag type object">object</span></span>
  506. <p class="description">A hash of all connections associated with this peer, keyed by the remote peer's ID.<span
  507. class='tip'>We recommend keeping track of connections yourself rather than relying on this hash.</span></p>
  508. </div>
  509. <div class="toplevel " id="peerdisconnected"><span class="name"><a
  510. href="#peerdisconnected">peer.disconnected</a><span class="tag type boolean">boolean</span></span>
  511. <p class="description"><code>false</code> if there is an active connection to the PeerServer.</p>
  512. </div>
  513. <div class="toplevel " id="peerdestroyed"><span class="name"><a href="#peerdestroyed">peer.destroyed</a><span
  514. class="tag type boolean">boolean</span></span>
  515. <p class="description"><code>true</code> if this peer and all of its connections can no longer be used.</p>
  516. </div>
  517. <div class="toplevel " id="dataconnection"><span class="name"><a href="#dataconnection">DataConnection</a><span
  518. class="tag type class">class</span></span>
  519. <p class="description">Wraps WebRTC's DataChannel. To get one, use <a
  520. href='#peerconnect'><code>peer.connect</code></a> or listen for the <a
  521. href='#peeron-connect'><code>connect</code></a> event.</p>
  522. <div class="children">
  523. <div class="child " id="dataconnection-send"><span class="name"><a href="#dataconnection-send">.send</a><span
  524. class="tag type method">method</span><span class="snippet">dataConnection.send(data);</span></span>
  525. <p class="description"><code>data</code> is serialized by BinaryPack by default and sent to the remote peer.
  526. </p>
  527. <div class="children">
  528. <div class="child " id="dataconnection-send-data"><span class="name"><a
  529. href="#dataconnection-send-data">data</a></span>
  530. <p class="description">You can send any type of data, including objects, strings, and blobs.</p>
  531. </div>
  532. </div>
  533. </div>
  534. <div class="child " id="dataconnection-close"><span class="name"><a href="#dataconnection-close">.close</a><span
  535. class="tag type method">method</span><span class="snippet">dataConnection.close();</span></span>
  536. <p class="description">Closes the data connection gracefully, cleaning up underlying DataChannels and
  537. PeerConnections.</p>
  538. </div>
  539. <div class="child " id="dataconnection-on"><span class="name"><a href="#dataconnection-on">.on</a><span
  540. class="tag type method">method</span><span class="snippet">dataConnection.on(event,
  541. callback);</span></span>
  542. <p class="description">Set listeners for data connection events.</p>
  543. <div class="children">
  544. <div class="child " id="dataconnection-on-data"><span class="name"><a
  545. href="#dataconnection-on-data">'data'</a><span class="tag type event">event</span><span
  546. class="snippet">dataConnection.on('data', function(data) { ... });</span></span>
  547. <p class="description">Emitted when data is received from the remote peer.</p>
  548. </div>
  549. <div class="child " id="dataconnection-on-open"><span class="name"><a
  550. href="#dataconnection-on-open">'open'</a><span class="tag type event">event</span><span
  551. class="snippet">dataConnection.on('open', function() { ... });</span></span>
  552. <p class="description">Emitted when the connection is established and ready-to-use.</p>
  553. </div>
  554. <div class="child " id="dataconnection-on-close"><span class="name"><a
  555. href="#dataconnection-on-close">'close'</a><span class="tag type event">event</span><span
  556. class="snippet">dataConnection.on('close', function() { ... });</span></span>
  557. <p class="description">Emitted when either you or the remote peer closes the data connection.<span
  558. class='warn'>Firefox does not yet support this event.</span></p>
  559. </div>
  560. <div class="child " id="dataconnection-on-error"><span class="name"><a
  561. href="#dataconnection-on-error">'error'</a><span class="tag type event">event</span><span
  562. class="snippet">dataConnection.on('error', function(err) { ... });</span></span></div>
  563. </div>
  564. </div>
  565. <div class="child " id="dataconnection-datachannel"><span class="name"><a
  566. href="#dataconnection-datachannel">.dataChannel</a><span class="tag type object">object</span></span>
  567. <p class="description">A reference to the RTCDataChannel object associated with the connection.</p>
  568. </div>
  569. <div class="child " id="dataconnection-label"><span class="name"><a href="#dataconnection-label">.label</a><span
  570. class="tag type string">string</span></span>
  571. <p class="description">The optional label passed in or assigned by PeerJS when the connection was initiated.
  572. </p>
  573. </div>
  574. <div class="child " id="dataconnection-metadata"><span class="name"><a
  575. href="#dataconnection-metadata">.metadata</a></span>
  576. <p class="description">Any type of metadata associated with the connection, passed in by whoever initiated the
  577. connection.</p>
  578. </div>
  579. <div class="child " id="dataconnection-open"><span class="name"><a href="#dataconnection-open">.open</a><span
  580. class="tag type boolean">boolean</span></span>
  581. <p class="description">This is true if the connection is open and ready for read/write.</p>
  582. </div>
  583. <div class="child " id="dataconnection-peerconnection"><span class="name"><a
  584. href="#dataconnection-peerconnection">.peerConnection</a><span
  585. class="tag type object">object</span></span>
  586. <p class="description">A reference to the RTCPeerConnection object associated with the connection.</p>
  587. </div>
  588. <div class="child " id="dataconnection-peer"><span class="name"><a href="#dataconnection-peer">.peer</a><span
  589. class="tag type string">string</span></span>
  590. <p class="description">The ID of the peer on the other end of this connection.</p>
  591. </div>
  592. <div class="child " id="dataconnection-reliable"><span class="name"><a
  593. href="#dataconnection-reliable">.reliable</a><span class="tag type boolean">boolean</span></span>
  594. <p class="description">Whether the underlying data channels are reliable; defined when the connection was
  595. initiated.</p>
  596. </div>
  597. <div class="child " id="dataconnection-serialization"><span class="name"><a
  598. href="#dataconnection-serialization">.serialization</a><span class="tag type string">string</span></span>
  599. <p class="description">The serialization format of the data sent over the connection. Can be
  600. <code>binary</code> (default), <code>binary-utf8</code>, <code>json</code>, or <code>none</code>.</p>
  601. </div>
  602. <div class="child " id="dataconnection-type"><span class="name"><a href="#dataconnection-type">.type</a><span
  603. class="tag type string">string</span></span>
  604. <p class="description">For data connections, this is always <code>'data'</code>.</p>
  605. </div>
  606. <div class="child " id="dataconnection-buffersize"><span class="name"><a
  607. href="#dataconnection-buffersize">.bufferSize</a><span class="tag type number">number</span></span>
  608. <p class="description">The number of messages queued to be sent once the browser buffer is no longer full.</p>
  609. </div>
  610. </div>
  611. </div>
  612. <div class="toplevel " id="mediaconnection"><span class="name"><a href="#mediaconnection">MediaConnection</a><span
  613. class="tag type class">class</span></span>
  614. <p class="description">Wraps WebRTC's media streams. To get one, use <a
  615. href='#peercall'><code>peer.call</code></a> or listen for the <a href='#peeron-call'><code>call</code></a>
  616. event.</p>
  617. <div class="children">
  618. <div class="child " id="mediaconnection-answer"><span class="name"><a
  619. href="#mediaconnection-answer">.answer</a><span class="tag type method">method</span><span
  620. class="snippet">mediaConnection.answer([stream],[options]);</span></span>
  621. <p class="description">When receiving a <a href='#peeron-call'><code>call</code></a> event on a peer, you can
  622. call <code>.answer</code> on the media connection provided by the callback to accept the call and optionally
  623. send your own media stream.</p>
  624. <div class="children">
  625. <div class="child " id="mediaconnection-answer-stream"><span class="name"><a
  626. href="#mediaconnection-answer-stream"><span class="optional"><span class="bracket">[</span>stream<span
  627. class="bracket">]</span></span></a><span class="tag type MediaStream">MediaStream</span></span>
  628. <p class="description">A WebRTC media stream from <a
  629. href='https://developer.mozilla.org/en-US/docs/Web/API/Navigator.getUserMedia'><code>getUserMedia</code></a>.
  630. </p>
  631. </div>
  632. <div class="child " id="mediaconnection-answer-options"><span class="name"><a
  633. href="#mediaconnection-answer-options"><span class="optional"><span
  634. class="bracket">[</span>options<span class="bracket">]</span></span></a><span
  635. class="tag type object">object</span></span>
  636. <div class="children">
  637. <div class="child " id="mediaconnection-answer-options-sdptransform"><span class="name"><a
  638. href="#mediaconnection-answer-options-sdptransform">sdpTransform</a><span
  639. class="tag type method">method</span></span>
  640. <p class="description">Function which runs before create answer to modify sdp answer message.</p>
  641. </div>
  642. </div>
  643. </div>
  644. </div>
  645. </div>
  646. <div class="child " id="mediaconnection-close"><span class="name"><a
  647. href="#mediaconnection-close">.close</a><span class="tag type method">method</span><span
  648. class="snippet">mediaConnection.close();</span></span>
  649. <p class="description">Closes the media connection.</p>
  650. </div>
  651. <div class="child " id="mediaconnection-on"><span class="name"><a href="#mediaconnection-on">.on</a><span
  652. class="tag type method">method</span><span class="snippet">mediaConnection.on(event,
  653. callback);</span></span>
  654. <p class="description">Set listeners for media connection events.</p>
  655. <div class="children">
  656. <div class="child " id="mediaconnection-on-stream"><span class="name"><a
  657. href="#mediaconnection-on-stream">'stream'</a><span class="tag type event">event</span><span
  658. class="snippet">mediaConnection.on('stream', function(stream) { ... });</span></span>
  659. <p class="description">Emitted when a remote peer adds a <code>stream</code>.</p>
  660. </div>
  661. <div class="child " id="mediaconnection-on-close"><span class="name"><a
  662. href="#mediaconnection-on-close">'close'</a><span class="tag type event">event</span><span
  663. class="snippet">mediaConnection.on('close', function() { ... });</span></span>
  664. <p class="description">Emitted when either you or the remote peer closes the media connection. <span
  665. class='warn'>Firefox does not yet support this event.</span></p>
  666. </div>
  667. <div class="child " id="mediaconnection-on-error"><span class="name"><a
  668. href="#mediaconnection-on-error">'error'</a><span class="tag type event">event</span><span
  669. class="snippet">mediaConnection.on('error', function(err) { ... });</span></span></div>
  670. </div>
  671. </div>
  672. <div class="child " id="mediaconnection-open"><span class="name"><a href="#mediaconnection-open">.open</a><span
  673. class="tag type boolean">boolean</span></span>
  674. <p class="description">Whether the media connection is active (e.g. your call has been answered). You can
  675. check this if you want to set a maximum wait time for a one-sided call.</p>
  676. </div>
  677. <div class="child " id="mediaconnection-metadata"><span class="name"><a
  678. href="#mediaconnection-metadata">.metadata</a></span>
  679. <p class="description">Any type of metadata associated with the connection, passed in by whoever initiated the
  680. connection.</p>
  681. </div>
  682. <div class="child " id="mediaconnection-peer"><span class="name"><a href="#mediaconnection-peer">.peer</a><span
  683. class="tag type string">string</span></span>
  684. <p class="description">The ID of the peer on the other end of this connection.</p>
  685. </div>
  686. <div class="child " id="mediaconnection-type"><span class="name"><a href="#mediaconnection-type">.type</a><span
  687. class="tag type string">string</span></span>
  688. <p class="description">For media connections, this is always <code>'media'</code>.</p>
  689. </div>
  690. </div>
  691. </div>
  692. <div class="toplevel utility " id="util"><span class="name"><a href="#util">util</a><span
  693. class="tag type object">object</span><span class="tag utility">utility</span></span>
  694. <p class="description">Provides a variety of helpful utilities.<span class='warn'>Only the utilities documented
  695. here are guaranteed to be present on <code>util</code>. Undocumented utilities can be removed without warning.
  696. We don't consider these to be 'breaking changes.'</span></p>
  697. <div class="children">
  698. <div class="child " id="util-browser"><span class="name"><a href="#util-browser">.browser</a><span
  699. class="tag type string">string</span><span class="snippet">if (util.browser === 'Firefox') { /* OK to peer
  700. with Firefox peers. */ }</span></span>
  701. <p class="description">The current browser. This property can be useful in determining whether or not two
  702. peers can connect. For example, as of now data connections are not yet interoperable between major browsers.
  703. <code>util.browser</code> can currently have the values 'Firefox', 'Chrome', 'Unsupported', or 'Supported'
  704. (unknown WebRTC-compatible browser).</p>
  705. </div>
  706. <div class="child " id="util-supports"><span class="name"><a href="#util-supports">.supports</a><span
  707. class="tag type object">object</span><span class="snippet">if (util.supports.data) { /* OK to start a data
  708. connection. */ }</span></span>
  709. <p class="description">A hash of WebRTC features mapped to booleans that correspond to whether the feature is
  710. supported by the current browser.<span class='warn'>Only the properties documented here are guaranteed to be
  711. present on <code>util.supports</code>.</span></p>
  712. <div class="children">
  713. <div class="child " id="util-supports-audiovideo"><span class="name"><a
  714. href="#util-supports-audiovideo">.audioVideo</a><span class="tag type boolean">boolean</span></span>
  715. <p class="description">True if the current browser supports media streams and PeerConnection.</p>
  716. </div>
  717. <div class="child " id="util-supports-data"><span class="name"><a href="#util-supports-data">.data</a><span
  718. class="tag type boolean">boolean</span></span>
  719. <p class="description">True if the current browser supports DataChannel and PeerConnection.</p>
  720. </div>
  721. <div class="child " id="util-supports-binary"><span class="name"><a
  722. href="#util-supports-binary">.binary</a><span class="tag type boolean">boolean</span></span>
  723. <p class="description">True if the current browser supports binary DataChannels.</p>
  724. </div>
  725. <div class="child " id="util-supports-reliable"><span class="name"><a
  726. href="#util-supports-reliable">.reliable</a><span class="tag type boolean">boolean</span></span>
  727. <p class="description">True if the current browser supports reliable DataChannels.</p>
  728. </div>
  729. </div>
  730. </div>
  731. </div>
  732. </div>
  733. </section>
  734. </body>