lowscript
TypeScript icon, indicating that this package has built-in type declarations

0.0.6 • Public • Published

Lowscript

Set of DSL syntaxes for low-code with Metarhia technology stack

  • Markdown-based process modeling language
  • Limited subset of JavaScript for domain logic

Usage

Parse markdown-based domain process script

Syntax: parseMarkdown(src: string): Array<DomainProcess>;

Result structure:

interface DomainProcess {
  name: string;
  body: Array<DomainStep>;
}
interface DomainStep {
  command: string;
  success: Array<string>;
  fail: Array<string>;
  finalization: Array<string>;
}

License & Contributors

Copyright (c) 2021-2022 Metarhia contributors. Lowscript is MIT licensed.
Lowscript is a part of Metarhia technology stack.

/lowscript/

    Package Sidebar

    Install

    npm i lowscript

    Homepage

    metarhia.com

    Weekly Downloads

    1

    Version

    0.0.6

    License

    MIT

    Unpacked Size

    10.1 kB

    Total Files

    8

    Last publish

    Collaborators

    • timur.shemsedinov