Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cascades-fbp/cascades
Language-agnostic Flow-based Programming (FBP) framework in Go
https://github.com/cascades-fbp/cascades
Last synced: about 14 hours ago
JSON representation
Language-agnostic Flow-based Programming (FBP) framework in Go
- Host: GitHub
- URL: https://github.com/cascades-fbp/cascades
- Owner: cascades-fbp
- License: mit
- Created: 2014-08-14T07:37:29.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-21T17:07:05.000Z (almost 10 years ago)
- Last Synced: 2024-08-03T13:03:03.575Z (4 months ago)
- Language: Go
- Homepage:
- Size: 771 KB
- Stars: 62
- Watchers: 11
- Forks: 8
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Stories in Ready](https://badge.waffle.io/cascades-fbp/cascades.png?label=ready&title=Ready)](https://waffle.io/cascades-fbp/cascades)
## Cascades Flow-Based Programming Framework
### Language-Agnostic Programming Framework for Data-Driven Applications
Cascades is language-agnostic [dataflow](http://en.wikipedia.org/wiki/Dataflow_programming) programming framework that implements a number of the [Flow-Based Programming](http://en.wikipedia.org/wiki/Flow-based_programming) (FBP) concepts. Although we consider Cascades to be a general-purpose programming framework we have created it having a, as J. P. Morrison described: a *data factory mental image in mind, where the application is expressed as a series of transforms on data streams - which requires fundamental changes from the old von Neumann thinking in the way programmers build applications*.
### Features
* Cascades is cross-platform (can be used on OSX/Linux/Windows, tested also on Raspberry PI and Beagleboard Black) and completely written in [Go](http://golang.org/) programming language.
* Uses [ZeroMQ](http://zeromq.org) for connections between the components.
* The core components are also written in Go, but you are free to choose any programming language of your choice as long as there are bindings for it (currently it supports: C, C++, C#, CL, Delphi, Erlang, F#, Felix, Haskell, Java, Objective-C, PHP, Python, Lua, Ruby, Ada, Basic, Clojure, Go, Haxe, Node.js, ooc, Perl, and Scala)
* Supports flows defined using NoFlo's [JSON](http://noflojs.org/documentation/json/) format or FBP [DSL](http://noflojs.org/documentation/fbp/) language.Please, visit our [Wiki](https://github.com/cascades-fbp/cascades/wiki) for details on how to get started.
## Usage
General usage is described below:
```
NAME:
cascades - A Cascades FBP runtime/scheduler for the FBP applications.USAGE:
cascades [global options] command [command options] [arguments...]VERSION:
0.1.0COMMANDS:
run Runs a given graph defined in the .fbp or .json formats
library Manages a library of components
help, h Shows a list of commands or help for one commandGLOBAL OPTIONS:
--file, -f 'library.json' components library file
--debug, -d enable extra output for debug purposes
--help, -h show help
--version, -v print the version
```## Authors
- [Oleksandr Lobunets](https://github.com/oleksandr)
- [Alexandr Krylovskiy](https://github.com/krylovsk)
- Plus many more wonderful contributors!## License
The MIT License
Copyright © 2014
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.