Skip to content
Kurt Pachinger edited this page Sep 7, 2022 · 5 revisions

Welcome to the httprelayjs-gui wiki!

Overview

A tool to visualize version control for proxy routes in HTTPRelay-js.

Server

  • Organize and parse data sessions
  • Automatic: reduce duplicates, attempt persist, block inactive
  • Manual: purge, increase limit, add test data

Client

  • User object for config and events
  • View username, color, and latency
  • Send data packets to master for re-distribution
  • Receive data packets from head of timeline

Process

flowchart LR;
proxy(proxy url)
loadProxy(load assets)
loadServe(load httprelay)

uid-->proxy
proxy--yes-->client-->loadProxy-->init
proxy--no-->server-->loadServe-->init
init-->fetch

subgraph fetch
 SERVE--revlist-->GET
 GET--log-->SERVE
end
SERVE-->daemon

p1(init, queue)
p2(prune, latency)
 subgraph daemon
   direction TB;
   subgraph UAC
     direction TB;
     p1-->config
   end
   unload
   subgraph auth
     direction TB;
     p2-->revlist
   end
 end

Loading
Clone this wiki locally