Tag: web
-
Typescript for WebApps
https://github.com/FoalTS/foal https://github.com/sveltejs/kit
-
https e golang
“Go Language” HomePage at: https://go.dev/ (WAS: golang.org/) https://vk.com/wall341179603_5279 package main import( “net/http” “fmt” “log” ) func main() { // handle `/` route http.HandleFunc( “/”, func( res http.ResponseWriter, req *http.Request ) { fmt.Fprint( res, “Hello World! (from GoLang’s net/http)” ) } ) // run server on port 443=https 80=http // your DNS domain is not netop.info…