Update README.md
This commit is contained in:
parent
b5d40f1fe8
commit
aa98a427f8
22
README.md
22
README.md
|
@ -42,29 +42,27 @@ A <b>W</b>eb <b>IDE</b> IDE for Teams using Golang.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
||||||
* A browser tab corresponds to a Wide session
|
* A browser tab corresponds to a Wide session
|
||||||
* Execution output push via WebSocket
|
* Execution output push via WebSocket
|
||||||
|
|
||||||
|
Flow:
|
||||||
1. Browser sends ````Build```` request
|
1. Browser sends ````Build```` request
|
||||||
2. Server executes ````go build```` command via ````os/exec````<br/>
|
2. Server executes ````go build```` command via ````os/exec````<br/>
|
||||||
2.1. Generates a executable file
|
2.1. Generates a executable file
|
||||||
3. Browser sends ````Run```` request
|
3. Browser sends ````Run```` request
|
||||||
4. Server executes the file via ````os/exec````<br/>
|
4. Server executes the file via ````os/exec````<br/>
|
||||||
4.1. A running process<br/>
|
4.1. A running process<br/>
|
||||||
4.2. Execution output push via WebSocket channel
|
4.2. Execution output push via WebSocket channel
|
||||||
5. Browser renders with callback function ````ws.onmessage````
|
5. Browser renders with callback function ````ws.onmessage````
|
||||||
|
|
||||||
### Code Assist
|
### Code Assist
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
||||||
* Autocompletion
|
* Autocompletion
|
||||||
* Find Usages
|
* Find Usages
|
||||||
|
|
||||||
|
Flow:
|
||||||
1. Browser sends code assist request
|
1. Browser sends code assist request
|
||||||
2. Handler gets user workspace of the request with HTTP session
|
2. Handler gets user workspace of the request with HTTP session
|
||||||
3. Server executes ````gocode````/````ide_stub````<br/>
|
3. Server executes ````gocode````/````ide_stub````<br/>
|
||||||
|
|
Loading…
Reference in New Issue