https://github.com/runnerty/executor-iterable
Runnerty module: Iterable
https://github.com/runnerty/executor-iterable
executor iterable runnerty
Last synced: 10 months ago
JSON representation
Runnerty module: Iterable
- Host: GitHub
- URL: https://github.com/runnerty/executor-iterable
- Owner: runnerty
- License: mit
- Created: 2017-04-07T15:01:16.000Z (about 9 years ago)
- Default Branch: main
- Last Pushed: 2023-07-19T00:59:45.000Z (almost 3 years ago)
- Last Synced: 2025-07-02T19:09:28.647Z (11 months ago)
- Topics: executor, iterable, runnerty
- Language: JavaScript
- Size: 135 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Smart Processes Management
[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Dependency Status][david-badge]][david-badge-url]
# Iterable executor for [Runnerty]:
### Installation:
Through NPM
```bash
npm i @runnerty/executor-iterable
```
You can also add modules to your project with [runnerty-cli]
```bash
npx runnerty-cli add @runnerty/executor-iterable
```
This command installs the module in your project, adds example configuration in your `config.json` and creates an example plan of use.
If you have installed [runnerty-cli] globally you can include the module with this command:
```bash
rty add @runnerty/executor-iterable
```
### Configuration:
Add in [config.json]:
```json
{
"id": "iterable_default",
"type": "@runnerty-executor-iterable"
}
```
### Plan sample:
Add in [plan.json]:
- Object
```json
{
"id": "iterable_default",
"objects": [
{ "key1": "val1", "key2": "val2" },
{ "key1": "val1_1", "key2": "val2_2" },
{ "key1": "val1_2", "key2": "val2_3" }
]
}
```
- String
```json
{
"id": "iterable_default",
"objects": "@GV(VAR_JSON_STRINGIFY)"
}
```
- JSON File
```json
{
"id": "iterable_default",
"jsonFile": "sample.json"
}
```
[runnerty]: http://www.runnerty.io
[downloads-image]: https://img.shields.io/npm/dm/@runnerty/executor-iterable.svg
[npm-url]: https://www.npmjs.com/package/@runnerty/executor-iterable
[npm-image]: https://img.shields.io/npm/v/@runnerty/executor-iterable.svg
[david-badge]: https://david-dm.org/runnerty/executor-iterable.svg
[david-badge-url]: https://david-dm.org/runnerty/executor-iterable
[config.json]: http://docs.runnerty.io/config/
[plan.json]: http://docs.runnerty.io/plan/
[runnerty-cli]: https://www.npmjs.com/package/runnerty-cli