0.0.3 • Published 6 years ago

sparql-fetch-label v0.0.3

Weekly downloads
6
License
MIT
Repository
github
Last release
6 years ago

Fetch the label of the url from sparql end points

Feuture

  • Fetch the label of the url from sparql end points
  • Use the proxy Server to avoid the Cross-Origin Resource Sharing
  • Cache the result of queries

Usage

Basic

const fetchLabel = require('sparql-fetch-label')
const fetch = fetchLabel()

fetch('http://rdf.pubannotation.org/sparql', 'http://www4.wiwiss.fu-berlin.de/drugbank/resource/targets/49')
  .then(label => console.log('get label: ', label))

=> get label: Endothelin B receptor

Use proxy

const fetchLabel = require('sparql-fetch-label')
const fetch = fetchLabel()

fetch('http://rdf.pubannotation.org/sparql', 'http://www4.wiwiss.fu-berlin.de/drugbank/resource/targets/49', 'http://myproxy.exaple.com/proxy')
  .then(label => console.log('get label: ', label))

Try

npm i
npm start