JSPM

  • Created
  • Published
  • Downloads 4351
  • Score
    100M100P100Q133691F
  • License MIT

A comunica void-based logger.

Package Exports

  • @comunica/logger-void
  • @comunica/logger-void/lib/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@comunica/logger-void) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Comunica Bus SPARQL Parse

npm version

A logger that voids all log messages.

Click here to learn more about logging.

This module is part of the Comunica framework, and should only be used by developers that want to build their own query engine.

Click here if you just want to query with Comunica.

Install

$ yarn add @comunica/logger-void

Usage

const QueryEngine = require('@comunica/query-sparql').QueryEngine;
import {LoggerVoid} from "@comunica/logger-void";

const bindingsStream = await new QueryEngine().queryBindings('SELECT * WHERE { ?s ?p ?o }', {
  sources: ['https://fragments.dbpedia.org/2015/en'],
  log: new LoggerVoid(),
});