- graph data structure that is compatible with javascript's SigmaJS and Graphology
- Adding/Removing nodes and edges
- Import/Export graph as JSON
go get -u github.com/UserJY/GoGraph
package main
import "github.com/UserJY/GoGraph"
func main(){
somegraph := gograph.MakeRandomGraph()
somegraph.Print()
somegraph.ExportJSON("out.json")
}