Giter Site home page Giter Site logo

ericbae1975 / flow Goto Github PK

View Code? Open in Web Editor NEW

This project forked from project-flogo/flow

0.0 0.0 0.0 511 KB

Flow is a flow-based process engine implementation for processing event-driven requests.

License: BSD 3-Clause "New" or "Revised" License

Go 100.00%

flow's Introduction

Flows is a simple process flow action for the Project Flogo Ecosystem

Flogo Flow

Flogo Flow is one of the primary actions of the Project Flogo Ecosystem. It is a process flow engine that can be used to connect activities together to create complex application logic. This proces engine can be used to create code-free applications or for application integration and orchestration projects.

Getting Started

We’ve made building process flows as easy as possible. Develop your flows using:

  • A simple, clean JSON-based DSL
  • Golang API

See the sample below of flow that logs its inputs (for brevity, the triggers and metadata of the resource has been omitted). Also don’t forget to check out the examples in the repo.

{
    "tasks": [
      {
        "id": "log_1",
        "name": "Log 1",
        "activity": {
          "ref": "#log",
          "input": {
            "message": "=$flow.in"
          }
        }
      },
      {
        "id": "log_2",
        "name": "Log 2",
        "activity": {
          "ref": "#log",
          "input": {
            "message": "second log message"
          }
        }
      }
    ],
    "links": [
      {
        "from":"log_1",
        "to":"log_2"
      }
    ]
}

Try out the example

Firstly you should install the install the Flogo CLI.

Next you should download our aggregation example log-flogo.json.

We'll create a our application using the example file, we'll call it myApp

$ flogo create -f log-flogo.json myApp

Now, build it...

$ cd myApp/
$ flogo build

Activities

Flogo Flows also provides some activities to assist in complex flow creation.

  • Subflow : This activity allows you start another flow within the existing flow.

Additional Documentation

To learn more about the model you should checkout the Flow Model doc.

License

Flogo source code in this repository is under a BSD-style license, refer to LICENSE

flow's People

Contributors

lixingwang avatar vnalawad-tibco avatar skothari-tibco avatar cpramodroy avatar abhide-tibco avatar vijaynalawade avatar awakchau-tibco avatar abhijitwakchaure avatar mellistibco avatar debovema avatar vanilcha-tibco avatar milanbhagwat avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.