Skip to content

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/esb

Running 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 serve

You can then list the active routes:

bash
./joynare-nexus list-routes

For more details on defining your own routes, see the REST API Guide.

Released under the ISC License.