Skip to content

Commit 78cc84e

Browse files
committed
update READMEs
1 parent 72f2d82 commit 78cc84e

File tree

8 files changed

+7046
-72
lines changed

8 files changed

+7046
-72
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ npm install node-datachannel
3838

3939
## Electron
4040

41-
`node-datachannel` supports Electron. For Electron native module should be rebuilt.
41+
`node-datachannel` supports Electron.
4242

4343
Please check [electron demo](/examples/electron-demo)
4444

examples/README.md

-21
This file was deleted.

examples/client-server/README.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# client-server Example
2+
3+
- You can use client-server example project to test WebRTC Data Channels with WebSocket signaling.
4+
- It uses same logic of [libdatachannel/examples/client](https://github.com/paullouisageneau/libdatachannel/tree/master/examples) project.
5+
- Contains an equivalent implementation for a node.js signaling server
6+
7+
## How to Use?
8+
9+
- Prepare Project
10+
- cd examples/client-server
11+
- npm i
12+
- Start ws signaling server;
13+
- node signaling-server.js
14+
- Start answerer (On a new Console);
15+
- node client.js
16+
- Note local ID
17+
- Start Offerer (On a new Console);
18+
19+
- node client.js
20+
- Enter answerer ID
21+
22+
> You can also use [libdatachannel/examples/client](https://github.com/paullouisageneau/libdatachannel/tree/master/examples) project's client & signaling server

examples/electron-demo/README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ Project created with
44

55
> `npm init electron-app@latest my-new-app -- --template=webpack`
66
7-
## Electron Rebuild Process
7+
## Electron Compatibility and Rebuilding
8+
9+
`node-datachannel` uses N-API for creating binaries. Normally `electron` is compatible with N-API binarıes, so you should not need to rebuild the binaries.
10+
11+
### If you need anyway, you can use `electron-rebuild` package with some modifications.
812

913
Electron does not support `cmake-js` which `node-datachannel` uses as builder.
1014

examples/electron-demo/forge.config.js

-4
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,6 @@ module.exports = {
2626
name: '@electron-forge/plugin-auto-unpack-natives',
2727
config: {},
2828
},
29-
{
30-
name: 'plugin-node-datachannel',
31-
config: {},
32-
},
3329
{
3430
name: '@electron-forge/plugin-webpack',
3531
config: {

0 commit comments

Comments
 (0)