GithubHelp home page GithubHelp logo

laurensrietveld / client.js Goto Github PK

View Code? Open in Web Editor NEW

This project forked from linkeddatafragments/client.js

0.0 2.0 0.0 1.18 MB

A JavaScript client for Triple Pattern Fragments interfaces.

Home Page: http://linkeddatafragments.org/

License: Other

JavaScript 100.00%

client.js's Introduction

Linked Data Fragments Client

Build Status npm version Docker Automated Build DOI

On today's Web, Linked Data is published in different ways, including data dumps, subject pages, and results of SPARQL queries. We call each such part a Linked Data Fragment of the dataset.

The issue with the current Linked Data Fragments is that they are either so powerful that their servers suffer from low availability rates (as is the case with SPARQL), or either don't allow efficient querying.

Instead, this client solves queries by accessing Triple Pattern Fragments.
Each Triple Pattern Fragment offers:

  • data that corresponds to a triple pattern (example).
  • metadata that consists of the (approximate) total triple count (example).
  • controls that lead to all other fragments of the same dataset (example).

Execute SPARQL queries

You can execute SPARQL queries against Triple Pattern Fragments like this:

$ ldf-client http://fragments.dbpedia.org/2015/en query.sparql

The arguments to the ldf-client command are:

  1. Any fragment of the dataset you want to query, in this case DBpedia. More datasets.
  2. A file with the query you want to execute (this can also be a string).

From within your application

First, create a FragmentsClient to fetch fragments of a certain dataset.
Then create a SparqlIterator to evaluate SPARQL queries on that dataset.

var ldf = require('ldf-client');
var fragmentsClient = new ldf.FragmentsClient('http://fragments.dbpedia.org/2015/en');

var query = 'SELECT * { ?s ?p <http://dbpedia.org/resource/Belgium>. ?s ?p ?o } LIMIT 100',
    results = new ldf.SparqlIterator(query, { fragmentsClient: fragmentsClient });
results.on('data', function (result) { console.log(result); });

Install the client

The command-line client requires Node.js 4.0 or higher and is tested on OSX and Linux. To install, execute:

$ [sudo] npm install -g ldf-client

Browser version

The client can also run in Web browsers via browserify, which provides browser equivalents for Node.js-specific parts. Try the live demo.

To build a browserified version, run:

npm install [-g] browserify
npm run browserify

The browserified version will be written to ldf-client-browser.js.

The API is the same as that of the Node version, except that ldf = require('ldf-client') is no longer necessary, since ldf is exposed as window.ldf.

From source

To install from the latest GitHub sources, execute:

$ git clone [email protected]:LinkedDataFragments/Client.js
$ cd Client.js
$ npm install .

Then run the application with:

$ bin/ldf-client http://fragments.dbpedia.org/2015/en queries/artists-york.sparql

The queries folder contains several example queries for DBpedia.

(Optional) Running in a Docker container

If you want to rapidly deploy use the client as a microservice, you can build a Docker container as follows:

$ docker build -t ldf-client .

After that, you can run your newly created container:

$ docker run -it --rm ldf-client http://fragments.dbpedia.org/2015/en 'SELECT * WHERE { ?s ?p ?o } LIMIT 100'

Mounting custom config and query files can be done like this:

$ docker run -it --rm $(pwd)/config.json:/tmp/config.json $(pwd)/query.sparql:/tmp/query.sparql ldf-client http://fragments.dbpedia.org/2015/en -f /tmp/query.sparql -c /tmp/config.json

License

The Linked Data Fragments client is written by Ruben Verborgh and colleagues.

This code is copyrighted by Ghent University – imec and released under the MIT license.

client.js's People

Contributors

rubenverborgh avatar joachimvh avatar laurensrietveld avatar rubensworks avatar petervandenabeele avatar scast avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.