Go to file
2017-01-04 18:24:39 +00:00
docs added a transpiler for resolving imports/exports 2016-11-30 19:31:04 +00:00
models allow webpack to also process the pre-included models for use in web 2016-12-23 21:56:15 +00:00
src moved the 'parse decision' logic from CENode to the relevant parsers 2017-01-04 18:24:39 +00:00
.babelrc added a transpiler for resolving imports/exports 2016-11-30 19:31:04 +00:00
.eslintrc.json CEAgent.js now conforms to AirBnb lint tests 2016-12-22 22:57:49 +00:00
.gitignore added webpack and configs to support building for the browser 2016-12-23 20:01:47 +00:00
.webpackrc.js allow webpack to also process the pre-included models for use in web 2016-12-23 21:56:15 +00:00
LICENSE added direct matching for 'what is' and 'who is' type questions 2015-07-31 14:11:36 +00:00
package.json allow webpack to also process the pre-included models for use in web 2016-12-23 21:56:15 +00:00
README.md updated CEServer to require the models index file instead of directly 2016-12-23 22:19:59 +00:00

CENode

A pure JavaScript implementation of the ITA project's CEStore - called CENode. CENode is able to understand the basic sentence types parsed by the CEStore, such as conceptualising and instance creation and modification.

Please visit the project's home page for more information and for documentation.

See also the Getting Started Tutorial.

Quickstart guide

CENode can be imported into your Node apps or run in a browser. Either way, you will need Node and NPM installed before continuing, so install these for your platform first.

Building for a browser

First install the necessary dev dependencies.

npm install

Build the library for use in a browser.

npm run build-web

A file cenode.js (along with cenode.min.js and cenode.js.map) will be generated in the dist/ directory. Additionally, CENode's default models (including the CE core model) are also produced during the build process.

Include whichever CENode file (standard or minified) suits your needs best in your webapp markup. If you wish, also include the models file which will allow you to later use the core model.

...
<script src="cenode.min.js"></script>
<script src="models.js"></script> <!-- If you need it -->
...

Once included, the CENode variable is exposed.

...
<script>
  var node = new CENode();
</script>
...

If you chose to include the default models file too (which is recommended for most applications), then the core model - and any other models you need - can be passed to the node during instantiation.

...
<script>
  var node = new CENode(CEModels.core, myCustomModel, ...);
</script>

From here, use the documentation to learn more.

Importing into your Node app

CENode doesn't need to be built or processed to be included in your Node app. Simply require the library from the src directory.

const CENode = require('./path/to/CENode/src/CENode.js');

const node = new CENode();

Alternatively, if you want to take advantage of the CE core model, then this can also be imported and included along with any of your own models you may have.

const CENode = require('./path/to/CENode/src/CENode.js');
const CEModels = require('./path/to/CENode/models/index.js');

const node = new CENode(CEModels.core, myCustomModel, ...);

Running as a server

A small and simple webserver is also included for submitting and retrieving CE cards over HTTP. Run the webserver using Node.

$ node /path/to/CENode/src/CEServer.js

Please see the documentation for information on how to configure and use the server.

API reference

Please see the file docs/API.md for more information.

Motivation

Please see the file docs/documentation.pdf for an overview of the CE language, CECard protocol, and CENode motivation and behaviour.

License

CENode is released under the Apache License v2. See LICENSE for further information.