Dereference a remote dataset to a store using rdf-dereference.
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' });
©2024–present Jesse Wright, MIT License.