←back to thread

175 points chilipepperhott | 3 comments | | HN request time: 0.299s | source
Show context
myflash13 ◴[] No.44474202[source]
Closest thing to true “serverless”: entire MVC app (Django/Rails/Laravel) in the browser with WASM and data persistence by SQLite over CDN.

All the server has to do then is serve binaries, all the business logic is in the client.

replies(2): >>44474217 #>>44474669 #
1. bcoates ◴[] No.44474669[source]
What's WASM adding here? Without that you're just describing an ordinary SPA+CDN
replies(2): >>44474883 #>>44474887 #
2. myflash13 ◴[] No.44474883[source]
The ability to port existing apps to serverless. See for example Wordpress in WASM.
3. williamstein ◴[] No.44474887[source]
WASM adds the ability to run a local copy of SQLite (or even PostgreSQL) entirely in the browser.