We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a8c3c6 commit 1924725Copy full SHA for 1924725
README.md
@@ -1,6 +1,20 @@
1
### 项目说明
2
face_coding顾名思义面对面共享代码
3
4
+### 启动方式
5
+```shell
6
+## yarn start 可以替换为npm start
7
+# Windows (cmd.exe)
8
+set HTTPS=true&&yarn start
9
+
10
+# Windows (Powershell)
11
+($env:HTTPS = "true") -and (yarn start)
12
13
+# Linux, macOS (Bash)
14
+HTTPS=true yarn start
15
+```
16
17
18
#### 功能说明
19
20
- 1. 实时共享代码编辑器
@@ -19,8 +33,15 @@ face_coding顾名思义面对面共享代码
33
|音视频通话|✅|WebRTC|基于Janus|
34
|代码编辑器|✅|codeMirror|-|
21
35
|文字聊天|✅|WebRTC|WebRTC dataChannel|
22
-|屏幕共享|❌|WebRTC|-|
36
+|屏幕共享|✅|WebRTC|-|
37
+|声音监控|❌|WebRTC|-|
23
38
|录制功能|❌|WebRTC|-|
24
39
40
+### 有待优化项
41
+- 1. 退出房间的后续处理
42
+- 2. 声音激励的检测
43
+- 3. 选择设备和切换设备功能
44
+- 4. 聊天共享上下文
45
25
46
#### 后续计划
26
47
购买服务器:) 实现房间管控 提升编辑器共享文字的性能 对dataChannel的文字进行加密处理
0 commit comments