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
Within an ELARA project, the library modules may be imported and applied within Core assets:
import { StreamSchema, DictType, StringType, FloatType } from '@elaraai/core'
export default StreamSchema({
name: 'My Stream',
type: DictType(StringType, FloatType)
})
Related NPM Packages
- CLI: a CLI and Typescript Libraries to create, develop and deploy ELARA projects.
- CLI-Detect: a CLI and Typescript Libraries to manage type detection for ELARA datasources.
- Plugins: Typescript Libraries with ELARA Digital Twin Template plugins.
Related Github Repositories
- Examples: Typescript source-code for various ELARA Digital Twin Template projects.
- Plugins: Typescript source-code for ELARA Digital Twin Template plugins.
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.