Quick Start
Get Joynare Nexus up and running in minutes.
Installation
Currently, Joynare Nexus is built from source. Ensure you have Go 1.25.4+ installed.
bash
# Clone the repository
git clone https://github.com/joynare/joynare-nexus
cd joynare-nexus
# Build the CLI
go build -o joynare-nexus.exe ./cmd/esbRunning Your First Flow
Try running one of the showcase examples:
bash
./joynare-nexus run showcase.01-basics:SimplePipeline --input '{"text": "hello nexus"}'Starting the HTTP Server
To expose your flows as API endpoints:
bash
./joynare-nexus serveYou can then list the active routes:
bash
./joynare-nexus list-routesFor more details on defining your own routes, see the REST API Guide.
