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
- Host: GitHub
- URL: https://github.com/aksw/linked-data-viewer
- Owner: AKSW
- Created: 2023-02-28T15:40:34.000Z (over 3 years ago)
- Default Branch: docker
- Last Pushed: 2026-01-23T18:12:34.000Z (5 months ago)
- Last Synced: 2026-01-24T08:32:11.905Z (5 months ago)
- Language: JavaScript
- Size: 744 KB
- Stars: 4
- Watchers: 24
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Linked Data Viewer
Simple RDF/Linked Data Viewer for remote Jena Fuseki/SPARQL endpoints

## 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/?*