rdf-dereference-store
v1.3.2
Published
Dereference RDF to a store
Downloads
337
Maintainers
Readme
RDF Dereference Store
Dereference a remote dataset to a store using rdf-dereference.
Usage
import fs from 'fs';
import dereference, { parse } from 'rdf-dereference-store';
// Fetch store from a remote document
const { store } = await dereference('https://www.jeswr.org/#me');
// Fetch store from a local document
const { store } = await dereference('/path/to/file.ttl', { localFiles: true });
// Fetch store from an input stream
const { store } = await parse(fs.createReadStream('/path/to/file.ttl'), { contentType: 'text/turtle' });
// Fetch store from an input string
const { store } = await parse(fs.readFileSync('/path/to/file.ttl').toString(), { contentType: 'text/turtle' });
License
©2024–present Jesse Wright, MIT License.