0.1.1 • Published 2 years ago

@comake/skql-node-engine v0.1.1

Weekly downloads
-
License
BSD-4-Clause
Repository
github
Last release
2 years ago

npm version License

SKQL Node Engine

This is a Node.js implementation of a Standard Knowledge Query Language Engine for Standard Knowledge Language (SKL). It is written in Typescript and follows the SKL Engine specification.

How to use SKQL Node Engine

Requirements

  • Node.js
  • Java VM

1. Install via npm or yarn:

npm install @comake/skql-node-engine
yarn add @comake/skql-node-engine

2. Define Schemas

We will be posting more documentation on schemas soon. For now, you can view examples of schemas in use in the examples folder of skql-node-engine.

The folder-structure-sync example is a node.js module that can recursively loop through the folder structure of any Integration that works with the getFilesInFolder Verb.

3. Write code

Once you have schemas defined for your domain, all you have to do is write code using the Verbs and Nouns in your schema to build your application logic.

How to contribute

Requirements

  • Node.js
  • Java VM
  • Jar of the RMLMapper, which you can download (see step 2).

1. Clone the repo

To clone the repo, execute the following commands in your terminal:

git clone https://github.com/comake/skql-node-engine.git
cd skql-node-engine
npm ci

2. Download RMLMapper

Download the latest release of the RMLMapper jar from its releases page. Put the jar file in a folder called lib at the top level of your local clone of this repo. Change this line in src/Mapper.ts to use the correct filename for the release you're using:

const rmlmapperPath = path.join(__dirname, '/../lib/rmlmapper-6.0.0-r363-all.jar');

License & Copyright

SKQL Javascript Engine is available under the BSD 4 license. See the LICENSE file for more info.

Copyright (c) 2022, Comake, Inc.

TODO

  • add husky
  • unhardcode rml path
  • add README to example
  • add CONTRIBUTING.md, CODE_OF_CONDUCT.md, etc
  • add skds schema source