6 ms·
What makes this a "static page"? It's all non-interactive javascript.
by janvidar 8y ago
What makes this a "static page"?
It's all non-interactive javascript.
- sp332 8y agoBecause it's served statically. No processing is necessary on the host side and it can be cached indefinitely without getting stale.
- matte_black 8y agoStatic doesn’t mean no JavaScript or interaction. In fact many SPAs are just static pages served out of S3 and connecting directly to some API server to fetch data. A static page means no processing is done on a web server to serve you the rendered content. This saves you time and money, and ensures scalability for any amount of traffic.
- megous 8y agoThere are different meanings. Back in the day there was DHTML, where D stands for dynamic. So static page 10 years ago would mean no javascript.