It seems that there are now multiple “serverless” infrastructure services out there that run JS (including Wasm) in the deno runtime: Netlify Edge Functions, Deno Deploy, Supabase Edge Functions
I find this model more appealing that services where I have to build a full system container, and worry about provisioning (virtual) servers.
So naturally the next question is: Can I run Haskell on these?
With GHC gaining both JS and WebAssembly targets, it seems that there are possibly multiple ways to compile Haskell to something that can be run on these platforms, with probably just a small shim to be written. It remains to be seen if the output is small enough (Deno Deploy has a limit of 20MB), and if the startup time and memory consumption is acceptable.