|
You are here |
aarol.dev | ||
| | | | |
nodogmablog.bryanhogan.net
|
|
| | | | | Full source code available CoreWithKestrelFromConfighere. In my previous post I explained how to host Kestrel web server running on (the default) port 5000 as a Windows service. But what if you want to run the server on a different port? | |
| | | | |
avelino.run
|
|
| | | | | A linguagem Go é um projeto open source para tornar os programadores mais produtivos. Go foi desenvolvido para utilização maxima do CPU, tornando um processo simples para criar aplicação Multithreaded, o processo de utilização de maquinas na rede para processar determinado programa também é bem simples, assim tornando um software mais flexível e modular. Vamos montar um servidor HTTP em Go. package main import ( "http"; "io"; "fmt"; ) func HelloServer(c *http.Conn, req *http.Request) { io.WriteString(c, "hello, world!\n"); } func main() { fmt.Printf("http://localhost:8080/hello\n"); http.Handle("/hello", http.HandlerFunc(HelloServer)); err := http.ListenAndServe(":8080", nil); if err != nil { panic("ListenAndServe: ", err.String()) } } O HelloServer() é o qu... | |
| | | | |
xnacly.me
|
|
| | | | | Guide about working with JSON in go with HTTP server example | |
| | | | |
nagoon97.wordpress.com
|
|
| | | A growing number of web applications are making more and more use of client-side technologies because thanks to Ajax, it is now possible to writemore fluid and more responsive web applications using only client-side technologies. Now, web developers from all around the globe are releasing really interesting utilities and applications using only client-side technologies, many... | ||