Quick Install
One command to install Convex and add it to your PATH
macOS / Linux
curl -fsSL https://convex.world/install.sh | bashWorks on macOS, Linux, and Windows via WSL or Git Bash.
Windows PowerShell
irm https://convex.world/install.ps1 | iexRun in PowerShell. Creates a convex command available system-wide.
Requires Java 21+. The installer checks and will tell you if Java is missing.
Direct Download
Download convex.jar and run it with java -jar
Latest Stable Release
Production-ready build, fully tested. Recommended for most users.
Development Snapshot
Latest build from the develop branch. May contain incomplete features or breaking changes.
All Releases
Browse all versions with changelogs. Pin to a specific version for production deployments.
Docker
Run a Convex peer in a container
Pull the image
docker pull convexlive/convex:latestRun a peer
docker run convexlive/convex peer startAvailable tags: latest (stable), snapshot (develop), or a specific version like 0.8.3. View on Docker Hub
Build from Source
Clone the repository and build with Maven
Clone the repository
git clone https://github.com/Convex-Dev/convex.gitBuild
cd convex && mvn clean installRequires Java 21+ and Maven 3.7+. The built JAR is at convex-integration/target/convex.jar