|
1 |
| -EXPERIMENTAL, DO NOT USE |
| 1 | +# Flogo Contrib |
| 2 | + |
| 3 | +[](https://travis-ci.org/project-flogo/contrib.svg?branch=master) |
| 4 | + |
| 5 | +Core collection of Flogo contributions. This repository consists of activities, triggers and functions. |
| 6 | + |
| 7 | +## Contributions |
| 8 | + |
| 9 | +### Activities |
| 10 | +* [actreply](activity/actreply): Action Reply |
| 11 | +* [actreturn](activity/actreturn): Action Return |
| 12 | +* [appdata](activity/actreturn): App Shared Data |
| 13 | +* [channel](activity/channel): Send internal engine messages |
| 14 | +* [counter](activity/counter): Simple Counter |
| 15 | +* [error](activity/error): Throw error |
| 16 | +* [jsexec](activity/jsexec): Execute Javascript |
| 17 | +* [log](activity/log): Log Message |
| 18 | +* [mapper](activity/mapper): Mapper |
| 19 | +* [noop](activity/noop): No-Op |
| 20 | +* [rest](activity/rest): Basic REST invoker |
| 21 | + |
| 22 | +### Triggers |
| 23 | +* [channel](trigger/channel): Listen to internal engine messages |
| 24 | +* [cli](trigger/cli): CLI |
| 25 | +* [loadtester](trigger/loadtester): Basic load tester |
| 26 | +* [rest](trigger/rest): REST |
| 27 | +* [timer](trigger/timer): Timer |
| 28 | + |
| 29 | +### Functions |
| 30 | +* [coerce](function/coerce): Type Conversion |
| 31 | +* [json](function/json): JSON functions |
| 32 | +* [number](function/number): Number functions |
| 33 | +* [string](function/string): Basic string functions |
| 34 | + |
| 35 | +## Installation |
| 36 | + |
| 37 | +#### Install Activity |
| 38 | +Example: install **log** activity |
| 39 | + |
| 40 | +```bash |
| 41 | +flogo install github.com/project-flogo/contrib/activity/log |
| 42 | +``` |
| 43 | +#### Install Trigger |
| 44 | +Example: install **rest** trigger |
| 45 | + |
| 46 | +```bash |
| 47 | +flogo install github.com/project-flogo/contrib/trigger/rest |
| 48 | +``` |
| 49 | +#### Install Functions |
| 50 | +Example: install **string** functions |
| 51 | + |
| 52 | +```bash |
| 53 | +flogo install github.com/project-flogo/contrib/function/string |
| 54 | +``` |
| 55 | + |
| 56 | +## Contributing and support |
| 57 | + |
| 58 | +### Contributing |
| 59 | + |
| 60 | +New activities, triggers and functions are welcomed. If you would like to contribute, please following the [contribution guidelines](https://github.com/TIBCOSoftware/flogo/blob/master/CONTRIBUTING.md). If you have any questions, issues, etc feel free to chat with us on [Gitter](https://gitter.im/project-flogo/Lobby?utm_source=share-link&utm_medium=link&utm_campaign=share-link). |
| 61 | + |
| 62 | +## License |
| 63 | +The contrib repository is licensed under a BSD-type license. See [LICENSE](LICENSE) for license text. |
| 64 | + |
| 65 | +### Support |
| 66 | +For Q&A you can post your questions on [Gitter](https://gitter.im/project-flogo/Lobby?utm_source=share-link&utm_medium=link&utm_campaign=share-link) |
0 commit comments