Gorbunov Kirill Andreevich 4a5762871e add flush
2024-03-18 16:08:11 +03:00
2024-03-18 16:08:11 +03:00
2021-04-26 00:43:06 +03:00
2020-10-10 00:39:35 +03:00
2024-02-08 23:48:33 +03:00
2024-02-08 23:48:33 +03:00
2023-08-03 10:43:33 +03:00
2023-05-13 16:09:21 +03:00
2020-11-26 01:20:45 +03:00
2023-05-09 21:14:55 +03:00
2020-10-10 00:38:35 +03:00
2023-12-20 09:26:06 +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()
}
Description
No description provided
Readme 2.6 MiB
v3.11.38 Latest
2024-12-27 01:57:52 +03:00
Languages
Go 94.7%
HTML 5%
CSS 0.3%