System Runtime

System Runtime

  • Languages iconENGLISH
    • Română
    • Help Translate
  • SUPPORT
  • GITHUB

›Guides

Introduction

  • What is System Runtime ?
  • System Runtime architecture
  • What is Design First ?
  • Overview

Guides

  • Quick Start
  • How to install System Runtime
  • Design your model
  • Create components
  • Manage your components
  • Bundle your system
  • Extend System Runtime
  • Go deeper

Examples

  • A basic "hello world"
  • Create a bundle
  • Install a bundle client-side
  • Install a bundle in HTML
  • Install a bundle server-side
  • Package a bundle
  • Create a component
  • Create new types
  • Create a one to one relationship
  • Create a one to many relationship
  • Navigate through the model
  • Inheritance between components
  • Listen to a change of state of a component
  • Use System Runtime NoSQL Database
  • Object-Document Mapper in action
  • Use System Runtime core apis
  • Use System Runtime history apis
  • Quick Start example

APIS

  • Component Class
  • runtime Component
  • metamodel Component
  • logger Component
  • db Component
  • history Component
  • Document Collection

About

  • Who is behind System Runtime ?
  • License

How to install System Runtime

System Runtime is a client and server JavaScript library, so you can install it either with npm or with a CDN.

Installation with NPM

npm install system-runtime --save

To use it server-side:

// without babel/webpack
const runtime = require('system-runtime');

// with babel/webpack
import runtime from 'system-runtime';

Then you can use System Runtime in your script:

Installation with a CDN

Add this script tag in your HTML to install System Runtime:

<script src="https://cdn.jsdelivr.net/npm/system-runtime/dist/system-runtime.min.js"></script>

Then you can use System Runtime in your script:

runtime.version();

Now that you have installed System Runtime, let's design your model.

← Quick StartDesign your model →
  • Installation with NPM
  • Installation with a CDN
System Runtime is distributed under Apache License 2.0 - Copyright © 2024 Erwan Carriou