#Single page webpage(spa) without framework

8 messages · Page 1 of 1 (latest)

balmy turret
#

"without a framework" just means "writing the framework yourself" and reinventing the wheel

#

But to answer your question, you can simply fetch data from the backend and insert it into the DOM of the browser using innerHTML

#

Note that technique is very unsafe so you should sanitize the data you get out make sure the data is clean before sending it

#

You can also create components that are just functions that will create your DOM boxes on the fly, but that would kinda be recreating React

#

@undone falcon

undone falcon
#

so what will me solution here?

balmy turret