mirror of
https://github.com/nlepage/go-wasm-http-server.git
synced 2025-03-11 09:39:10 +00:00
29 lines
521 B
Go
29 lines
521 B
Go
![]() |
package main
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"fmt"
|
||
|
"net/http"
|
||
|
|
||
|
wasmhttp "github.com/nlepage/go-wasm-http-server"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
http.HandleFunc("/hello", func(res http.ResponseWriter, req *http.Request) {
|
||
|
params := make(map[string]string)
|
||
|
if err := json.NewDecoder(req.Body).Decode(¶ms); err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
|
||
|
if err := json.NewEncoder(res).Encode(map[string]string{
|
||
|
"message": fmt.Sprintf("Hello %s!", params["name"]),
|
||
|
}); err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
})
|
||
|
|
||
|
wasmhttp.Serve(nil)
|
||
|
|
||
|
select {}
|
||
|
}
|