Go to file
dependabot[bot] dbc3c12eed
Bump go.unistack.org/micro/v3 from 3.10.9 to 3.10.10
Bumps [go.unistack.org/micro/v3](https://github.com/unistack-org/micro) from 3.10.9 to 3.10.10.
- [Release notes](https://github.com/unistack-org/micro/releases)
- [Commits](https://github.com/unistack-org/micro/compare/v3.10.9...v3.10.10)

---
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-02-13 18:01:59 +00:00
.github Bump dependabot/fetch-metadata from 1.3.5 to 1.3.6 (#135) 2023-01-30 21:21:45 +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
LICENSE codec rewrite 2020-11-26 01:20:45 +03:00
README.md use own fork 2020-10-10 00:38:35 +03:00
go.mod Bump go.unistack.org/micro/v3 from 3.10.9 to 3.10.10 2023-02-13 18:01:59 +00:00
go.sum Bump go.unistack.org/micro/v3 from 3.10.9 to 3.10.10 2023-02-13 18:01:59 +00:00
handler.go dont mangle header names 2023-02-13 00:09:54 +03:00
http.go fix error handler 2023-01-23 09:23:38 +03:00
message.go server: remove unparsed body from request and message 2022-03-21 15:29:40 +03:00
options.go add http header option (#142) 2023-02-11 01:18:16 +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.go fill request with header and cookie data 2021-10-26 22:36:04 +03:00
util_test.go fill request with header and cookie data 2021-10-26 22:36:04 +03:00

README.md

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()
}