--- tags: - golang - howto --- Multiple times I wish I had remembered this one-liner, now I come across it again whilst reading about Golang/WASM. So that's where it was from! Here it is: ```sh # install goexec: go install github.com/shurcooL/goexec@latest goexec 'http.ListenAndServe(`:8080`, http.FileServer(http.Dir(`.`)))' ```