Go to file
2023-01-23 09:26:31 +03:00
.github Bump hmarr/auto-approve-action from 2 to 3 (#125) 2022-11-28 16:26:01 +03:00
.golangci.yml lint (#57) 2021-04-26 00:43:06 +03:00
.synced add missing files 2020-10-10 00:39:35 +03:00
go.mod Bump go.unistack.org/micro/v3 from 3.10.1 to 3.10.4 2023-01-18 17:03:05 +00:00
go.sum Bump go.unistack.org/micro/v3 from 3.10.1 to 3.10.4 2023-01-18 17:03:05 +00:00
handler.go fix endpoint 2023-01-17 23:40:24 +03:00
http.go fix error handler 2023-01-23 09:23:38 +03:00
LICENSE codec rewrite 2020-11-26 01:20:45 +03:00
message.go server: remove unparsed body from request and message 2022-03-21 15:29:40 +03:00
options.go fix error handler 2023-01-23 09:23:38 +03:00
README.md use own fork 2020-10-10 00:38:35 +03:00
request.go server: remove unparsed body from request and message 2022-03-21 15:29:40 +03:00
server.go fill request with header and cookie data 2021-10-26 22:36:04 +03:00
subscriber.go server: remove unparsed body from request and message 2022-03-21 15:29:40 +03:00
util_test.go fill request with header and cookie data 2021-10-26 22:36:04 +03:00
util.go fill request with header and cookie data 2021-10-26 22:36:04 +03:00

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

import (
	"net/http"

	"github.com/unistack-org/micro/v3/server"
	httpServer "github.com/unistack-org/micro-server-http"
)

func main() {
	srv := httpServer.NewServer(
		server.Name("helloworld"),
	)

	mux := http.NewServeMux()
	mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
		w.Write([]byte(`hello world`))
	})

	hd := srv.NewHandler(mux)

	srv.Handle(hd)
	srv.Start()
	srv.Register()
}

Or as part of a service

import (
	"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() {
	srv := httpServer.NewServer(
		server.Name("helloworld"),
	)

	mux := http.NewServeMux()
	mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
		w.Write([]byte(`hello world`))
	})

	hd := srv.NewHandler(mux)

	srv.Handle(hd)

	service := micro.NewService(
		micro.Server(srv),
	)
	service.Init()
	service.Run()
}