An open API service indexing awesome lists of open source software.

https://github.com/aksw/linked-data-viewer

Javascript based viewer for remote SPARQL endpoint contents
https://github.com/aksw/linked-data-viewer

Last synced: 15 days ago
JSON representation

Javascript based viewer for remote SPARQL endpoint contents

Awesome Lists containing this project

README

          

# Linked Data Viewer

Simple RDF/Linked Data Viewer for remote Jena Fuseki/SPARQL endpoints

![Screenshot](https://github.com/AKSW/Linked-Data-Viewer/assets/10867832/b00c17e8-1a2e-4ca9-82df-3be28727da17)

## Usage

```sh
docker run --rm \
-p 8001:80 \
-e STARTPAGE=yes \
-e USE_CREDS=no \
-e ENDPOINT_URL=http://localhost:8642/sparql \
--init \
aksw/ldv
```

To enable searching for source graphs of a statement (when using named graphs):

```sh
... \
-e GRAPH_LOOKUP=yes \
...
```

If you have an existing deployment of Ontodia Graph Explorer that you want to link to:

```sh
... \
-e EXPLORE_URL=http://localhost:8002/ \
...
```

Or in docker compose:

```yml
services:
ldv:
image: aksw/ldv
init: true
ports:
- 8001:80
environment:
- ENDPOINT_URL=http://localhost:3030/geods
- EXPLORE_URL=http://localhost:8002/
```

Now visit http://localhost:8001/?*