|
|
|
|
|
by sime2009
2000 days ago
|
|
I don't know how far back your view on web development goes, but the approach from 20 years ago really was documents being thrown around and lots of forms with a little bit of JS. That was hacking documents into apps. Today's approach for building web apps is basically code up a fat client application which downloads to the browser, runs, and talks to some remote web API (i.e. REST) using JSON. This is much closer to native apps and very far from the document approach. The app and the pure content are cleanly split between the initial app bundle and the web APIs. |
|