WebServer pra Go
13/05/2019
0
Fala galera,
Alguém sabe dizer se existe servidor web pra Go? É CGI?
Alguém sabe dizer se existe servidor web pra Go? É CGI?
Estevão Dias
Curtir tópico
+ 1
Responder
Posts
13/05/2019
Gladstone Matos
boa pergunta @estevao vou ficar no aguardo tambem para ver se alguem da comunidade sabe essa ;-)
abs
abs
Responder
13/05/2019
Estevão Dias
Dá pra fazer usando a própria linguagem, tipo o Node sem framework,
Será que já tem um "Express.js" pra Go? hauhuahuahuha
package main import ( "io" "net/http" ) func hello(w http.ResponseWriter, r *http.Request) { io.WriteString(w, "Hello world!") } func main() { http.HandleFunc("/", hello) http.ListenAndServe(":8000", nil) }
Será que já tem um "Express.js" pra Go? hauhuahuahuha
Responder
Clique aqui para fazer login e interagir na Comunidade :)