https://github.com/conduitio/conduit-processor-example
Example standalone processors for Conduit
https://github.com/conduitio/conduit-processor-example
Last synced: 25 days ago
JSON representation
Example standalone processors for Conduit
- Host: GitHub
- URL: https://github.com/conduitio/conduit-processor-example
- Owner: ConduitIO
- License: apache-2.0
- Created: 2024-02-08T15:00:36.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-14T06:00:54.000Z (about 2 months ago)
- Last Synced: 2025-04-14T07:21:53.477Z (about 2 months ago)
- Language: Go
- Homepage: https://conduit.io/docs/processors/standalone/
- Size: 303 KB
- Stars: 1
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Conduit Processor Examples
This repository contains two standalone processors that can be used in a [Conduit](https://github.com/ConduitIO/conduit)
pipeline, one uses the simple way to create a processor, the other uses the full processor approach.To build the processors and get the WASM files, run `make` under the package containing the processor. The resulting
WASM file will be created under the same package.Example:
````
cd simple
make
````For more details on how to build your own processor, how to run it, or how it works, check [Standalone Processors](https://conduit.io/docs/processors/standalone).