-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
75 lines (64 loc) · 1.09 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package main
import (
"fmt"
"github.com/gorilla/mux"
"github.com/hasangenc0/microfrontends"
"log"
"net/http"
)
func handler(w http.ResponseWriter, r *http.Request) {
gateways := []microfrontends.Gateway{
{
Name: "header",
Host: "http://localhost",
Port: "4462",
Method: "GET",
},
{
Name: "footer",
Host: "http://localhost",
Port: "4463",
Method: "GET",
},
{
Name: "content",
Host: "http://localhost",
Port: "4461",
Method: "POST",
},
}
page := microfrontends.Page{
Name: "App",
Content: `
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Microfrontends Example</title>
</head>
<body>
<chunk name="header"></chunk>
<chunk name="content"></chunk>
<chunk name="footer"></chunk>
</body>
</html>
`,
}
app := microfrontends.App{
gateways,
page,
w,
}
app.Init()
}
func main() {
port := ":4460"
r := mux.NewRouter()
r.HandleFunc("/", handler)
fmt.Println("Listening...")
err := http.ListenAndServe(port, r)
if err != nil {
log.Fatal("Listen and serve: ", err)
return
}
}