Go to file
2017-01-16 22:57:03 +00:00
docs added a transpiler for resolving imports/exports 2016-11-30 19:31:04 +00:00
models added all test cases to be passed in-line with CE-into slides 2017-01-10 18:34:27 +00:00
src test cases for each of the specific examples in the CE slides 2017-01-16 22:57:03 +00:00
test test cases for each of the specific examples in the CE slides 2017-01-16 22:57:03 +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
LICENCE renamed license -> licence 2017-01-10 20:06:46 +00:00
package.json added a test framework 2017-01-10 18:04:16 +00:00
README.md renamed license -> licence 2017-01-10 20:06:46 +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');

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.

Testing

To run the tests:

$ npm test

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.

Licence

CENode is released under the Apache Licence v2. See LICENCE for further information.