Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 563 Bytes

File metadata and controls

26 lines (18 loc) · 563 Bytes

Go Reference

GoGraph

  • graph data structure that is compatible with javascript's SigmaJS and Graphology
  • Adding/Removing nodes and edges
  • Import/Export graph as JSON

How to Use

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")
}