I am implementing a system that checks the plagiarism of documents.
our stack is vuejs, nodejs/express and flask for python.
My question is that i have a page which the user will upload his documents for checking and the vue ui will send a request to the backend apis with the user file to check the similarity, while this process is running a loading overlay is displayed in the same page.
I want to update this page with live steps from the backend side like "extracting", "searching", "comparing", "generating report".
noting that the request sent with the user file have only one response.
so any ideas how can i achieve this step ??
Thanks ,,