@elaraai/core
TypeScript icon, indicating that this package has built-in type declarations

1.0.4 • Public • Published

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

  • CLI: a CLI and Typescript Libraries to create, develop and deploy ELARA projects.

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.

Keywords

none

Install

npm i @elaraai/core

Homepage

elaraai.com

DownloadsWeekly Downloads

123

Version

1.0.4

License

SEE LICENCE IN LICENCE.txt

Unpacked Size

2.12 MB

Total Files

153

Last publish

Collaborators

  • elaraai