EDK Core
The EDK (ELARA Development Kit) Core package contains Typescript Libraries to define ELARA Digital Twin Templates.
Installation
The EDK Core package can be installed with npm within in a Typescript project:
$ npm install @elaraai/core
Library Usage
Library modules may be imported and applied to build Templates.
const source = new SourceBuilder("Source")
.value({
value: 2 * Math.PI,
});
const pipeline = new PipelineBuilder("Pipeline")
.from(source.outputStream())
.transform(value => Multiply(value, 2))
// merge the two together
const template = Template(source, pipeline);
Related NPM Packages
Licence
The EDK Core package is licensed under the EDK Licence version LICENCE-1.05, the full version of the EDK Licence is available here.
Release Notes
[Version 1]
Initial public release.