eyereasonerjs
TypeScript icon, indicating that this package has built-in type declarations

0.0.3 • Public • Published

EYE.js: the TypeScript wrapper for the EYE reasoner

Executes the Eye N3 reasoner and returns the result as a promise.

Installation

First install Eye from https://github.com/josd/eye.

Install from npm with npm install eyereasonerjs.

import Eye from 'eyereasonerjs'

const eye = new Eye();

await eye.query(['context.n3'], 'query.n3q', ['--pass-all-ground']); //Returns query result as a string and --pass-all-ground flag
await eye.queryFile(['context.n3'], 'query.n3q', 'someFile.n3'); //Writes the result to a file (e.g. someFile.n3) and returns the file path.
await eye.queryTmp(['context.n3'], 'query.n3q'); //Writes the result to a temporary file and returns a {fd, path, cleanup} object (https://www.npmjs.com/package/tmp-promise).

await eye.pass(['context.n3']); //Returns closure result as a string

Readme

Keywords

Package Sidebar

Install

npm i eyereasonerjs

Weekly Downloads

1

Version

0.0.3

License

ISC

Unpacked Size

7.97 kB

Total Files

4

Last publish

Collaborators

  • miel_vds