In previous chapters, you learned how to use the stand-alone mode of your programs to launch the Wasm module and invoke functions on it from the host.
This chapter takes you through the journey of taking a Wasm module and exposing it over an HTTP-based interface, which means that the Wasm module is launched on the arrival of an HTTP request. Wasm is a great candidate for cloud computing because each Wasm module is a small sandbox of code. You can run multitenant code on the same Linux process and achieve a good amount of ...