Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

78
Views
Should web apps be embedded in pages on websites?

I'm new to web apps and trying to wrap my head around how they fit into a website, or if they entirely take the place of a website.

Currently I have a website that is simply a server that serves static HTML pages, with some JS embedded in. This works fine, but is kind of janky for more interactive components, where my JS is doing a lot of destroying and creating HTML elements dynamically. I would like to replace these pages of my website with web apps, which I can write in a more type-safe language (like Rust) that compiles to WebAssembly. Can I then embed this compiled web app on my website page?

Is this something regularly done in web development? I may be entirely getting the role of web apps wrong here, but it seems that this use case would be a good fit. If so, how would this normally be done? With a <script> tag?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

I think you should use an <iframe> tag to hold your web app
This will not affect the parent code
For example:

<iframe 
    srcdoc=`
        <html>
            <body>
                <p>Hello World</p>
            </body>
        </html>
`></iframe>

Is that what you want?

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!