|
|
|
|
|
by mjgs
1939 days ago
|
|
An option that just occurred to me: - use edge workers to fetch and insert data as the page is being returned to the client That would work in browsers with JS disabled. You could also have client-side code to update with live data as it comes in. The downside is that it’s not very portable code, but that’s the same for most serverless stuff, and it’s probably not that difficult to re-implement on another platform. |
|