# Client GUI

{% hint style="warning" %}
**This is the manual for older MicroStream versions (Version < 5.0).**

**The new documentation (Version >= 5.0) is located at:**

[https://docs.microstream.one/](https://docs.microstream.one/manual)
{% endhint %}

Based on the REST API we provide a client, which serves a convenient web user interface to browse through the storage data.

It is a runnable jar which starts a simple web server which then can be accessed by a browser of your choice.

To download it use maven

{% code title="pom.xml" %}

```markup
<repositories>
    <repository>
        <id>microstream-releases</id>
        <url>https://repo.microstream.one/repository/maven-public/</url>
    </repository>
</repositories>
<dependencies>
    <dependency>
        <groupId>one.microstream</groupId>
        <artifactId>storage.restclient.app</artifactId>
        <version>04.00.00-MS-GA</version>
    </dependency>
</dependencies>
```

{% endcode %}

&#x20;or this direct link:

{% embed url="<https://repo.microstream.one/repository/maven-public/one/microstream/storage.restclient.app/04.00.00-MS-GA/storage.restclient.app-04.00.00-MS-GA.jar>" %}

Start the client. The port parameter is optional, default port is 8080.

```
java -jar storage.restclient.app-04.00.00-MS-GA.jar --port=80
```

Then just open <http://localhost> in your browser, select the base URL of the REST service and click connect.

![](https://1736212218-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LlDABTSyLJZUmpSp2tl%2F-M525-LJue99oXBxrSvs%2F-M525HuVaFhOVwA8GwQ0%2Fimage.png?alt=media\&token=9764680b-00b2-43ae-90f8-f12c7307c76b)

Now you can browse through the data of the storage:

![](https://1736212218-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LlDABTSyLJZUmpSp2tl%2F-M525-LJue99oXBxrSvs%2F-M526MWpbPt2pnspEC4M%2Fimage.png?alt=media\&token=28996e7c-d6c7-43ac-974a-9790216fe4a7)

Or view the statistics:

![](https://1736212218-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LlDABTSyLJZUmpSp2tl%2F-M525-LJue99oXBxrSvs%2F-M526D3VdbBUaeBmohqk%2Fimage.png?alt=media\&token=a01d4b5a-5dfc-4620-922a-42bdb3549608)
