micro-server-http/README.md

66 lines
1.2 KiB
Markdown
Raw Permalink Normal View History

# HTTP Server
The HTTP Server is a go-micro.Server. It's a partial implementation which strips out codecs, transports, etc but enables you
to create a HTTP Server that could potentially be used for REST based API services.
## Usage
```go
import (
2016-06-30 22:24:43 +03:00
"net/http"
"github.com/unistack-org/micro/v3/server"
httpServer "github.com/unistack-org/micro-server-http"
)
func main() {
2016-06-30 22:23:53 +03:00
srv := httpServer.NewServer(
server.Name("helloworld"),
)
2016-06-30 22:23:53 +03:00
mux := http.NewServeMux()
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte(`hello world`))
})
2016-06-30 22:23:53 +03:00
hd := srv.NewHandler(mux)
2016-06-30 22:23:53 +03:00
srv.Handle(hd)
srv.Start()
srv.Register()
}
```
Or as part of a service
```go
import (
2016-06-30 22:24:43 +03:00
"net/http"
"github.com/unistack-org/micro/v3"
"github.com/unistack-org/micro/v3/server"
httpServer "github.com/unistack-org/micro-server-http"
)
func main() {
2016-06-30 22:23:53 +03:00
srv := httpServer.NewServer(
server.Name("helloworld"),
)
2016-06-30 22:23:53 +03:00
mux := http.NewServeMux()
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte(`hello world`))
})
2016-06-30 22:23:53 +03:00
hd := srv.NewHandler(mux)
2016-06-30 22:23:53 +03:00
srv.Handle(hd)
2016-06-30 22:23:53 +03:00
service := micro.NewService(
micro.Server(srv),
)
service.Init()
2016-06-30 22:23:53 +03:00
service.Run()
}
```