Can anyone point me in the right direction regardi...
# ktor
d
Can anyone point me in the right direction regarding how to update a progress element by querying the server for task status? My current approach is to use JavaScript to query the server for a JSON response and update the DOM in a loop until the task is done, but I don't have enough experience to make this all integrate, and I can't find any relevant examples.
l
you could maybe use a web socket to send status changes from the server to the frontend so you don't need to loop all the time. If you don't need it to be real-time querying the server in a loop should be ok