add test via browser step in README

This commit is contained in:
afrokick 2019-12-15 14:50:43 +03:00
parent 0bb887191d
commit 3dcf09451e

View File

@ -37,7 +37,9 @@ const { PeerServer } = require('peer');
const server = PeerServer({port: 9000, path: '/myapp'}); const server = PeerServer({port: 9000, path: '/myapp'});
``` ```
Connecting to the server from PeerJS: 3. Check that server works: open browser with [http://localhost:9000/myapp](http://localhost:9000/myapp) It should returns JSON with name, description and website fields.
### Connecting to the server from PeerJS:
```html ```html
<script> <script>
@ -45,7 +47,7 @@ Connecting to the server from PeerJS:
</script> </script>
``` ```
Using HTTPS: Simply pass in PEM-encoded certificate and key. ### Using HTTPS: Simply pass in PEM-encoded certificate and key.
```javascript ```javascript
const fs = require('fs'); const fs = require('fs');