How to properly render a full LaTeX document in a React.js application? [closed]

I am working on a React.js application where I need to render a full LaTeX document. The document is structured like a resume and contains LaTeX commands such as documentclass{article}, section{}, textbf{}, etc.

What I Have Tried

I tried react-latext but it doesnt’ support whole latex rendering

What I Need Help With

  1. I am looking for the best way to fully render a LaTeX document inside React.js, preserving all formatting, without requiring users to manually generate a PDF.

  2. Is there a better approach to rendering full LaTeX documents dynamically?

  3. Are there any libraries that fully support LaTeX syntax inside React?

  4. Can I convert LaTeX to HTML with better support for document structure (documentclass, section{})?