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

6.0.0 • 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.

Readme

Keywords

none

Package Sidebar

Install

npm i @elaraai/core

Homepage

elaraai.com

Weekly Downloads

15

Version

6.0.0

License

SEE LICENCE IN LICENCE.txt

Unpacked Size

3.65 MB

Total Files

224

Last publish

Collaborators

  • elaraai