mirror of
https://github.com/golang/go.git
synced 2025-05-05 15:43:04 +00:00
More project cleanup
parent
80d512ee94
commit
2de0e66d6f
@ -56,6 +56,7 @@ Table of Contents
|
|||||||
|
|
||||||
## Performance and Profiling
|
## Performance and Profiling
|
||||||
|
|
||||||
|
* [Answering your own (performance) questions in Go](http://www.sanarias.com/blog/915LearningtoansweryourownquestionsinGo) _2015-09-15_
|
||||||
* [Concise Guide to profiling go programs](https://medium.com/@tjholowaychuk/profiling-golang-851db2d9ae24) _2014-08-09_
|
* [Concise Guide to profiling go programs](https://medium.com/@tjholowaychuk/profiling-golang-851db2d9ae24) _2014-08-09_
|
||||||
* [Go Performance Observations](http://hashrocket.com/blog/posts/go-performance-observations) _2014-08-07_
|
* [Go Performance Observations](http://hashrocket.com/blog/posts/go-performance-observations) _2014-08-07_
|
||||||
* [Debugging performance issues in Go programs - Intel](https://software.intel.com/en-us/blogs/2014/05/10/debugging-performance-issues-in-go-programs) _2014-05-10_
|
* [Debugging performance issues in Go programs - Intel](https://software.intel.com/en-us/blogs/2014/05/10/debugging-performance-issues-in-go-programs) _2014-05-10_
|
||||||
|
@ -43,7 +43,8 @@ If you decide you need a bit more infrastructure, start by looking at some of th
|
|||||||
* [GinGonic](https://gin-gonic.github.io/gin/)
|
* [GinGonic](https://gin-gonic.github.io/gin/)
|
||||||
* [Revel Web Framework](https://revel.github.io/)
|
* [Revel Web Framework](https://revel.github.io/)
|
||||||
* [BeeGo Framework](http://beego.me/)
|
* [BeeGo Framework](http://beego.me/)
|
||||||
|
* [Frodo](https://github.com/kn9ts/frodo) - Go mini web framework inspired by Laravel(php), Slim(php) and ExpressJS(node.js)
|
||||||
|
* [Utron](https://github.com/gernest/utron) - Lightweight MVC framework for web applications.
|
||||||
|
|
||||||
## Communication
|
## Communication
|
||||||
|
|
||||||
|
17
Projects.md
17
Projects.md
@ -57,6 +57,7 @@ If you find a project in this list that is dead or broken, please either mark it
|
|||||||
* [Other Random Toys, Experiments and Example Code](#other-random-toys-experiments-and-example-code)
|
* [Other Random Toys, Experiments and Example Code](#other-random-toys-experiments-and-example-code)
|
||||||
* [P2P and File Sharing](#p2p-and-file-sharing)
|
* [P2P and File Sharing](#p2p-and-file-sharing)
|
||||||
* [Programming](#programming)
|
* [Programming](#programming)
|
||||||
|
* [RPC](#rpc)
|
||||||
* [Scanner and Parser Generators](#scanner-and-parser-generators)
|
* [Scanner and Parser Generators](#scanner-and-parser-generators)
|
||||||
* [Security](#security)
|
* [Security](#security)
|
||||||
* [Simulation Modeling](#simulation-modeling)
|
* [Simulation Modeling](#simulation-modeling)
|
||||||
@ -67,6 +68,7 @@ If you find a project in this list that is dead or broken, please either mark it
|
|||||||
* [Unix](#unix)
|
* [Unix](#unix)
|
||||||
* [Unsorted](#unsorted-please-help)
|
* [Unsorted](#unsorted-please-help)
|
||||||
* [Validation](#validation)
|
* [Validation](#validation)
|
||||||
|
* [Version Contro](#version-control)
|
||||||
* [Virtual Machines and Languages](#virtual-machines-and-languages)
|
* [Virtual Machines and Languages](#virtual-machines-and-languages)
|
||||||
* [Web Applications](#web-applications)
|
* [Web Applications](#web-applications)
|
||||||
* [Web Libraries](#web-libraries)
|
* [Web Libraries](#web-libraries)
|
||||||
@ -375,6 +377,7 @@ See also [[SQLDrivers page|SQLDrivers]].
|
|||||||
### MongoDB
|
### MongoDB
|
||||||
|
|
||||||
* [mgo](http://labix.org/mgo) - Rich MongoDB driver for Go
|
* [mgo](http://labix.org/mgo) - Rich MongoDB driver for Go
|
||||||
|
* [rocks-stata](https://github.com/facebookgo/rocks-strata) - MongoDB Backup Utility
|
||||||
|
|
||||||
### MySQL
|
### MySQL
|
||||||
|
|
||||||
@ -1125,6 +1128,11 @@ See also [[SQLDrivers page|SQLDrivers]].
|
|||||||
* [go-parse](https://github.com/vito/go-parse) - a Parsec-like parsing library
|
* [go-parse](https://github.com/vito/go-parse) - a Parsec-like parsing library
|
||||||
* [Shuffle](https://github.com/earthboundkid/shuffle) - Implementation of the Fisher–Yates shuffle (or Knuth shuffle) in Go.
|
* [Shuffle](https://github.com/earthboundkid/shuffle) - Implementation of the Fisher–Yates shuffle (or Knuth shuffle) in Go.
|
||||||
|
|
||||||
|
## RPC
|
||||||
|
|
||||||
|
* [gowsdl](https://github.com/hooklift/gowsdl) - WSDL code generation
|
||||||
|
* [gRPC](https://grpc.io) - Google's multi-language RPC framework with Go support
|
||||||
|
|
||||||
## Scanner and Parser Generators
|
## Scanner and Parser Generators
|
||||||
|
|
||||||
* [ebnf2y](http://github.com/cznic/ebnf2y) - Utility for converting EBNF grammars into yacc compatible skeleton .y files.
|
* [ebnf2y](http://github.com/cznic/ebnf2y) - Utility for converting EBNF grammars into yacc compatible skeleton .y files.
|
||||||
@ -1246,6 +1254,11 @@ See also [[SQLDrivers page|SQLDrivers]].
|
|||||||
|
|
||||||
* [validator](https://github.com/bluesuncorp/validator) - Go Struct and Field validation, including Cross Field, Cross Struct, Map, Slice and Array diving
|
* [validator](https://github.com/bluesuncorp/validator) - Go Struct and Field validation, including Cross Field, Cross Struct, Map, Slice and Array diving
|
||||||
|
|
||||||
|
## Version Control
|
||||||
|
|
||||||
|
* [git (in go)](https://github.com/dskinner/git) - Minimal working git client in Go
|
||||||
|
* [gogs](http://gogs.io/) - Self-hosting Git Server in Go
|
||||||
|
|
||||||
## Virtual Machines and Languages
|
## Virtual Machines and Languages
|
||||||
|
|
||||||
* [agora](https://github.com/PuerkitoBio/agora) - A dynamically typed, garbage collected, embeddable programming language built with Go
|
* [agora](https://github.com/PuerkitoBio/agora) - A dynamically typed, garbage collected, embeddable programming language built with Go
|
||||||
@ -1352,13 +1365,15 @@ See also [[SQLDrivers page|SQLDrivers]].
|
|||||||
* [Gowut](http://code.google.com/p/gowut) - Go Web UI Toolkit is a full-featured, easy to use, platform independent Web UI Toolkit written in pure Go.
|
* [Gowut](http://code.google.com/p/gowut) - Go Web UI Toolkit is a full-featured, easy to use, platform independent Web UI Toolkit written in pure Go.
|
||||||
* [HttpRouter](https://github.com/julienschmidt/httprouter) - A high performance HTTP request router that scales well
|
* [HttpRouter](https://github.com/julienschmidt/httprouter) - A high performance HTTP request router that scales well
|
||||||
* [mango](https://github.com/paulbellamy/mango) - Mango is a modular web-application framework for Go, inspired by Rack, and PEP333.
|
* [mango](https://github.com/paulbellamy/mango) - Mango is a modular web-application framework for Go, inspired by Rack, and PEP333.
|
||||||
* [Martini](https://github.com/codegangsta/martini) - Martini is a popular, lightweight, extensible package for writing modular web apps/services in Go
|
* [Martini **deprecated**](https://github.com/codegangsta/martini) - Martini is a popular, lightweight, extensible package for writing modular web apps/services in Go
|
||||||
|
* [Negroni](https://github.com/codegangsta/negroni) - Idiomatic middleare for Go
|
||||||
* [restclient](https://github.com/jmcvetta/restclient) - Client library for interacting with RESTful APIs.
|
* [restclient](https://github.com/jmcvetta/restclient) - Client library for interacting with RESTful APIs.
|
||||||
* [Revel](http://robfig.github.com/revel/) - High productivity web framework modeled on Play! Framework
|
* [Revel](http://robfig.github.com/revel/) - High productivity web framework modeled on Play! Framework
|
||||||
* [sawsij](https://bitbucket.org/jaybill/sawsij/src) - Provides a small, opinionated web framework.
|
* [sawsij](https://bitbucket.org/jaybill/sawsij/src) - Provides a small, opinionated web framework.
|
||||||
* [Tango](https://github.com/lunny/tango) - Micro-kernel & pluggable web framework for Go
|
* [Tango](https://github.com/lunny/tango) - Micro-kernel & pluggable web framework for Go
|
||||||
* [Tiger Tonic](https://github.com/rcrowley/go-tigertonic) - framework for building JSON web services inspired by Dropwizard
|
* [Tiger Tonic](https://github.com/rcrowley/go-tigertonic) - framework for building JSON web services inspired by Dropwizard
|
||||||
* [trinity](https://github.com/cihub/trinity) - MVC framework
|
* [trinity](https://github.com/cihub/trinity) - MVC framework
|
||||||
|
* [Utron](https://github.com/gernest/utron) - MVC Framework
|
||||||
* [web.go](https://github.com/hoisie/web) - a simple framework to write webapps
|
* [web.go](https://github.com/hoisie/web) - a simple framework to write webapps
|
||||||
* [wfdr](https://github.com/crazy2be/wfdr) - Simple web framework designed for and written in go. Works with other languages as well, but not as well.
|
* [wfdr](https://github.com/crazy2be/wfdr) - Simple web framework designed for and written in go. Works with other languages as well, but not as well.
|
||||||
* [xweb](https://github.com/go-xweb/xweb) - A web framework for Go. Just like Struts for Java.
|
* [xweb](https://github.com/go-xweb/xweb) - A web framework for Go. Just like Struts for Java.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user