0.22.0 • Published 3 years ago

@marco.jacovone/cnodes v0.22.0

Weekly downloads
509
License
MIT
Repository
github
Last release
3 years ago

cnodes

cnodes-logo

Introduction

cnodes is a representation-agnostic engine that define a process and is able to execute it. The representation ca be stored and reload as JSON object. Its UI counterpart is cnodes-ui, an advanced user interface to define and test graphs. The UI can be integrated with your clients and the "engine" can be easly integrated in your backends.

Install

npm install @marco.jacovone/cnodes --save

Getting started

// Create a new program
let prg = program();

// create the "For" node
let fn = forNode();
// Define console node
let cn = consoleNode();

// Create flow connections and inputs/outputs
fn.prev.connect(prg.enter.next("Begin"));
fn.input("From").connect(prg.enter.output("Val"));
fn.input("To").value = 10;

prg.exit.prev.connect(fn.next("Out"));
cn.prev.connect(fn.next("Do"));
cn.input("Val").connect(fn.output("Index"));

// Execute
prg.addNode(fn).addNode(cn).process();

// Export
let dmp = Env.export(prg);
console.log(JSON.stringify(dmp));

The resulting graph with cnodes-ui looks like this:

Screenshot2

JSDoc Documentation

Take a look at Documentation

Demo

Try a demo test board at:

DEMO Test board

Once you've built the graph, you can press the Run button ti test its effect. please check the console to see the "Console" node output.

State of the art

The project is actually in a early alpha stage, but is growing rapidly ;-)


Copyright (c) 2020 Marco Jacovone

Licensed under MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0.22.0

3 years ago

0.20.0

3 years ago

0.21.0

3 years ago

0.19.0

3 years ago

0.18.32

3 years ago

0.18.28

3 years ago

0.18.27

3 years ago

0.18.29

3 years ago

0.18.31

3 years ago

0.18.30

3 years ago

0.18.26

3 years ago

0.18.25

3 years ago

0.18.24

3 years ago

0.18.23

3 years ago

0.18.22

3 years ago

0.18.19

3 years ago

0.18.18

3 years ago

0.18.21

3 years ago

0.18.20

3 years ago

0.18.17

3 years ago

0.18.16

3 years ago

0.18.15

3 years ago

0.18.14

3 years ago

0.18.11

3 years ago

0.18.13

3 years ago

0.18.12

3 years ago

0.18.10

3 years ago

0.18.9

3 years ago

0.18.8

3 years ago

0.18.7

3 years ago

0.18.6

3 years ago

0.18.5

3 years ago

0.18.4

3 years ago

0.18.3

3 years ago

0.18.1

3 years ago

0.18.2

3 years ago

0.18.0

3 years ago

0.17.2

3 years ago

0.17.1

3 years ago

0.17.0

3 years ago

0.16.8

3 years ago

0.16.9

3 years ago

0.16.7

3 years ago

0.16.5

3 years ago

0.16.6

3 years ago

0.16.3

3 years ago

0.16.4

3 years ago

0.16.2

3 years ago

0.15.0

3 years ago

0.15.1

3 years ago

0.16.0

3 years ago

0.16.1

3 years ago

0.14.2

3 years ago

0.14.0

3 years ago

0.14.1

3 years ago

0.13.0

3 years ago

0.12.7

3 years ago

0.12.6

3 years ago

0.12.5

3 years ago

0.12.4

3 years ago

0.12.3

3 years ago

0.12.2

3 years ago

0.12.0

3 years ago

0.12.1

3 years ago

0.11.0

3 years ago

0.10.0

3 years ago

0.9.2

3 years ago

0.9.1

3 years ago

0.9.0

3 years ago

0.8.0

3 years ago

0.7.1

3 years ago

0.7.0

3 years ago

0.6.0

3 years ago

0.5.1

3 years ago

0.5.0

3 years ago

0.4.0

3 years ago

0.3.0

3 years ago

0.2.1

3 years ago

0.2.0

3 years ago

0.1.23

3 years ago

0.1.24

3 years ago

0.1.21

3 years ago

0.1.22

3 years ago

0.1.20

3 years ago

0.1.19

3 years ago

0.1.18

3 years ago

0.1.17

3 years ago

0.1.15

3 years ago

0.1.16

3 years ago

0.1.14

3 years ago

0.1.13

3 years ago

0.1.12

3 years ago

0.1.11

3 years ago

0.1.10

3 years ago

0.1.9

3 years ago

0.1.8

3 years ago

0.1.7

3 years ago

0.1.6

3 years ago

0.1.4

3 years ago

0.1.3

3 years ago

0.1.5

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago

0.0.16

3 years ago

0.0.15

3 years ago

0.0.13

3 years ago

0.0.14

3 years ago

0.0.10

3 years ago

0.0.11

3 years ago

0.0.12

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago