A Go Struct Explorer Service (http.Handler) that offers remote inspection of any Go struct and its references.
example of exploring a yaegi program
go get github.com/emicklei/structexplorer
structexplorer.NewService("some structure", yourStruct).Start()
then a HTTP service will be started
INFO starting go struct explorer at http://localhost:5656
or as root HTTP Handler:
s := structexplorer.NewService("some structure", yourStruct, "other" , otherStruct)
http.ListenAndServe(":5656", s)
or as a HTTP Handler function:
http.HandleFunc("/explore", structexplorer.NewService("game", game).ServeHTTP)
- if a value is a pointer to a standard type then the display value has a "*" prefix
- if a value is a reflect.Value then the display value has a "~" prefix
- ⇊ : explore one or more selected values from the list and put them on the row below
- ⇉ : explore one or more selected values from the list and put them on the right
- ⇈ : explore one or more selected values from the list and put them on the row up
- z : show or hide fields which currently have zero value ("",0,nil,false)
- x : remove the struct from the page
- c : remove all struct from the page except the onces you started with
Note: if the list contains just one structural value then selecting it can be skipped for ⇊, ⇈ and ⇉.
Currently, the standard Go debugger delve
stops all goroutines while in a debugging session.
This means that if you have started the structexplorer
service in your program, it will not respond to any HTTP requests during that session.
The explorer can also be asked to dump an HTML page with the current state of values to a file.
s := structexplorer.NewService()
s.Explore("yours", yourStruct)
s.ExplorePath("yours.field") // dotted path of fields starting with an explore label
s.Dump()
Another method is to use a special test case which starts an explorer at the end of a test and then run it with a longer acceptable timeout.
See folder examples
for simple programs demonstrating each feature.