Go to file
Василий Толстов ca6cea861f Merge pull request 'add scheme to metadata' (#165) from scheme-v3 into v3
Reviewed-on: #165
2023-05-19 23:25:59 +03:00
.github Bump dependabot/fetch-metadata from 1.3.5 to 1.3.6 (#135) 2023-01-30 21:21:45 +03:00
handler issue-155: add swagger-ui handler 2023-05-04 06:48:09 +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.13 to 3.10.14 2023-02-27 18:02:27 +00:00
go.sum Bump go.unistack.org/micro/v3 from 3.10.13 to 3.10.14 2023-02-27 18:02:27 +00:00
handler.go add scheme to metadata 2023-05-19 23:25:22 +03:00
http.go check subscribe errors 2023-05-13 16:09:21 +03:00
message.go server: remove unparsed body from request and message 2022-03-21 15:29:40 +03:00
options.go fixup build 2023-05-09 21:14:55 +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 fixup build 2023-05-09 21:14:55 +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()
}