https://github.com/reactive-graph/plugins-core
The Core Plugins for Reactive Graph
https://github.com/reactive-graph/plugins-core
entity-component-system flow-control graph-database inexor reactive-programming
Last synced: 5 months ago
JSON representation
The Core Plugins for Reactive Graph
- Host: GitHub
- URL: https://github.com/reactive-graph/plugins-core
- Owner: reactive-graph
- License: mit
- Created: 2023-01-15T13:02:43.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-13T17:11:31.000Z (7 months ago)
- Last Synced: 2025-02-14T00:08:28.233Z (5 months ago)
- Topics: entity-component-system, flow-control, graph-database, inexor, reactive-programming
- Language: Rust
- Homepage: https://docs.reactive-graph.io/book/Plugins.html
- Size: 10.3 MB
- Stars: 0
- Watchers: 7
- Forks: 0
- Open Issues: 39
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
std.reactive-graph.io
This repository contains the standard library for the Reactive Graph.
Reactive Graph is a reactive runtime based on a graph database, empowering everyone to build reliable and efficient software.
[
](https://docs.reactive-graph.io/book/)
[](https://docs.reactive-graph.io/docs/)
[
](https://www.rust-lang.org/)
[]()
[](https://github.com/reactive-graph/plugins-core/blob/main/LICENSE)
[](https://github.com/reactive-graph/plugins-core/actions/workflows/rust.yml)
[](https://discord.com/invite/acUW8k7)
List of Plugins
In this repository you'll find the essential plugins which are necessary or useful for all use cases.
| Name | Description |
|--------------------------------------------------------------|--------------------------------------------|
| [Arithmetic](./plugins/arithmetic/README.md) | Provides arithmetic gates and operations |
| [Base](./plugins/base/README.md) | Provides basic components and entity types |
| [Binary](./plugins/binary/README.md) | Handles binary data |
| [Color](./plugins/color/README.md) | Colors and colorspace transformations |
| [Comparison](./plugins/comparison/README.md) | Provides comparison gates |
| [Config](./plugins/config/README.md) | Load configuration files |
| [Connector](./plugins/connector/README.md) | Provides property connectors |
| [Date Time](./plugins/date-time/README.md) | Date and Time, Durations and calculation |
| [File](./plugins/file/README.md) | File representation |
| [Git](./plugins/git/README.md) | Git VCS operations |
| [HTTP](./plugins/http/README.md) | HTTP and JSONRPC |
| [JSON](./plugins/json/README.md) | Handles JSON arrays and objects |
| [Logical](./plugins/logical/README.md) | Provides logical operations |
| [Meta Data](./plugins/metadata/README.md) | Meta Data - Dublin Core, EXIF |
| [Numeric](./plugins/numeric/README.md) | Numeric operations |
| [Random](./plugins/random/README.md) | Generate random numbers |
| [Result](./plugins/result/README.md) | Result components |
| [State](./plugins/state/README.md) | Debounced states |
| [String](./plugins/string/README.md) | Provides string operations |
| [System Environment](./plugins/system-environment/README.md) | Provides environment variables |
| [Taxonomy](./plugins/taxonomy/README.md) | Taxonomy - categories and tags |
| [Trigger](./plugins/trigger/README.md) | Triggers and actions |
| [Value](./plugins/value/README.md) | Values and state management |Local Build + Local Deployment
#### Setup deployment directory in `.deployment.toml`
```shell
target_dirs = [
"../reactive-graph/plugins/deploy"
]
```#### Install a specific plugin
```shell
cargo build
cargo post build --package=reactive-graph-plugin-date-time
```#### Install all plugins of this repository at once
```shell
cargo build
cargo post build --package=deployment-all
```