Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 478 Bytes

File metadata and controls

24 lines (19 loc) · 478 Bytes

Data flow in Link-Up

Testing for client-server connection

I set this data flow to check if frontend is sucessfully connected with backend on deployment

flowchart TD
    start --> C
    D --> A
    subgraph Frontend
        start
        A["console.log(#quot;Connected to server#quot;)"]
    end
    subgraph Backend
        C["on.connection"]
        D["socket.emit(#quot;CTS#quot;)"]
        C --> D
    end
Loading

These all need to be connected together