Ego é um framework web full-stack escrito em Go, soluções de componentes front-end leves e eficientes, baseadas em gin. O front-end é compilado e não afeta o back-end.
Este é um trabalho em andamento.
简体中文
Vá Versão ≥1.7
go get github.com/go-ego/ego
go get -u github.com/go-ego/ego
go get -u github.com/go-ego/re
Para criar um novo aplicativo web Ego
$ re new my-webapp
Para executar o aplicativo que acabamos de criar, você pode navegar até a pasta do aplicativo e executar:
$ cd my-webapp && re run
package main
import (
"github.com/go-ego/ego"
)
func main () {
router := ego . Classic ()
ego . UseRenders ()
router . GlobHTML ( "views/html/*" )
parArr := [ 5 ] int { 1 , 2 , 3 , 4 , 5 }
router . Ego ( "/head/" , "head/head.html" , ego. Map {
"head" : "Test to load the HTML template" ,
"parArr" : parArr ,
})
router . Run ( ":3100" )
}
// pkg icon
< div class =" icon " >
< i class =" iconfont {vclass} " {node} > </ i >
< p > {prpo} </ p >
</ div >
< style >
.header-left{
float:left;
}
.header-right{
float:right;
}
.iconfont {
position: relative;
font-size:24px
}
</ style >
import (
"icons"
icon "icons/icon.vgo"
)
< div class =" head " >
< div > ego:{{.head}} </ div >
< icon >
vclass={icon-share-to}
node={ id="slot1"}
prpo={node---1}
</ icon >
< div >
{{range .parArr}}
< p > arr::: {{.}} </ p >
{{end}}
</ div >
</ div >
package main
import (
"github.com/go-ego/ego"
)
const httpUrl string = "http://127.0.0.1:3000"
func main () {
router := ego . Classic ()
router . Static ( "/js" , "./views/js" )
router . Static ( "/src" , "./views/src" )
router . GlobHTML ( "views/html/*" )
strUrl := httpUrl + "/test/hlist"
paramMap := ego. Map {
"lon" : "10.1010101" ,
"lat" : "20.202020" ,
"type" : "1" ,
}
router . TestHtml ( strUrl , paramMap ) // http url, http parameter, args (optional parameters): The default is "data".
router . Run ( ":3100" )
}
Mais instruções
Para contribuir com o Ego, consulte as Diretrizes de Contribuição. Fork -> Patch -> Push -> Teste -> Pull Request.
Consulte a página de contribuidores para obter a lista completa de contribuidores.
Ego é distribuído principalmente sob os termos da licença MIT e da licença Apache (versão 2.0), com partes cobertas por várias licenças semelhantes ao BSD.
Consulte LICENSE-APACHE, LICENSE-MIT e COPYRIGHT para obter detalhes.