Go to file
dependabot[bot] 14ff546fc1
Bump go.unistack.org/micro/v3 from 3.10.4 to 3.10.5
Bumps [go.unistack.org/micro/v3](https://github.com/unistack-org/micro) from 3.10.4 to 3.10.5.
- [Release notes](https://github.com/unistack-org/micro/releases)
- [Commits](https://github.com/unistack-org/micro/compare/v3.10.4...v3.10.5)

---
updated-dependencies:
- dependency-name: go.unistack.org/micro/v3
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-01-30 17:06:09 +00:00
.github Bump golangci/golangci-lint-action from 3.3.1 to 3.4.0 (#134) 2023-01-24 09:54:56 +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.4 to 3.10.5 2023-01-30 17:06:09 +00:00
go.sum Bump go.unistack.org/micro/v3 from 3.10.4 to 3.10.5 2023-01-30 17:06:09 +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()
}