mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
7dca9e3dd5
PR: ports/167344 Approved by: wen (maintainer)
18 lines
684 B
Plaintext
18 lines
684 B
Plaintext
web.go is the simplest way to write web applications in the Go programming
|
|
language. It's ideal for writing simple, performant backend web services.
|
|
|
|
web.go should be familiar to people who've developed websites with higher-level
|
|
web frameworks like sinatra, pylons, or web.py. It is designed to be a
|
|
lightweight web framework that doesn't impose any scaffolding on the user.
|
|
|
|
Some features include:
|
|
|
|
* Routing to url handlers based on regular expressions
|
|
* Secure cookies
|
|
* Support for fastcgi and scgi
|
|
* Web applications are compiled to native code. This means very fast
|
|
execution and page render speed
|
|
* Serving static files
|
|
|
|
WWW: https://github.com/hoisie/web
|