Skip to content

imaguiraga/topology-dsl-core

Repository files navigation

topology-dsl-core project

Open in CodeSandBox

Open in Gitpod

A flow and pipleine DSL in javascript.

Flow elements

  • sequence(array)
  sequence("a", "b", 
    repeat(optional("c")), 
    zeroOrMore("d")
  )
  • choice(array)
  choice(
    terminal("a"),
    choice("e", "d")
  )
  • optional(flowElement)
  optional("c")
  • repeat(flowElement)
  repeat(optional("c"))
  • terminal(string)

    terminal("b")
  • zeroOrMore(flowElement)

    zeroOrMore("d")
 npm i -g npm-check-updates && ncu -u && npm i
 ncu -u && yarn

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published