Description
Welcome to GraphStream, and thank you for your download, we hope you will find it
useful and practical.
We are always interested by suggestions on how to make the library more developer
friendly, see the website (http://www.graphstream-project.org/) for more information.
GraphStream alternatives and similar libraries
Based on the "Science" category.
Alternatively, view GraphStream alternatives based on common mentions on social networks and blogs.
-
JGraphX
DISCONTINUED. Library for visualisation (mainly Swing) and interaction with node-edge graphs.
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of GraphStream or a related project?
README
GraphStream
The GraphStream project is a java library that provides an API to model, analyze and visualize graphs and dynamic graphs.
Check out the Website http://www.graphstream-project.org/ for more information.
Installing GraphStream
The release comes with a pre-packaged jar file named gs-core.jar that contains the GraphStream classes. To start using GraphStream, simply put it in your class path. You can download GraphStream on the github releases pages, or on the website http://www.graphstream-project.org/.
Maven users may include major releases of gs-core
as a dependency:
<dependencies>
<dependency>
<groupId>org.graphstream</groupId>
<artifactId>gs-core</artifactId>
<version>2.0</version>
</dependency>
</dependencies>
Development Versions
Using https://jitpack.io one can also use any development version. Simply add the jitpack
repository to the pom.xml
of the project:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
then, add the gs-core
to your dependencies:
<dependencies>
<dependency>
<groupId>com.github.graphstream</groupId>
<artifactId>gs-core</artifactId>
<version>dev-SNAPSHOT</version>
</dependency>
</dependencies>
You can use any version of gs-core
you need. Simply specify the desired version in the <version>
tag. The version can be a git tag name (e.g. 2.0
), a commit number, or a branch name followed by -SNAPSHOT
(e.g. dev-SNAPSHOT
). More details on the possible versions on jitpack.
User interface
gs-core
does not ship any default user interface anymore. In order to display graphs, one need a GraphStream viewer (mainly gs-ui-javafx or gs-ui-swing). These are the steps to get a viewer:
- Download a GraphStream viewer and add the jar to your classpath (or as a dependency to
pom.xml
, for maven users). - Set a system property to tell
gs-core
which viewer to use :java System.setProperty("org.graphstream.ui", "javafx");
- Enjoy
Graph.display()
as usual.
Help
You may check the documentation on the website http://www.graphstream-project.org/. You may also share your questions on the mailing list at http://sympa.litislab.fr/sympa/subscribe/graphstream-users.
License
See the COPYING file.
*Note that all licence references and agreements mentioned in the GraphStream README section above
are relevant to that project's source code only.