Skip to content

Releases: koompi/jrok

Version 2.1.0

17 Dec 13:44

Choose a tag to compare

Jrok CLI v2.1.0 - Release

🎉 What's New in v2.1.0

The latest version of jrok CLI brings improvements and stability enhancements to our secure reverse proxy tool.

📦 Downloads

Choose the binary for your platform:

Linux (x86_64)

wget https://github.com/koompi/jrok/releases/download/v2.1.0/jrok-linux-x64
chmod +x jrok-linux-x64
sudo mv jrok-linux-x64 /usr/local/bin/jrok

macOS (x86_64 / Intel)

curl -L https://github.com/koompi/jrok/releases/download/v2.1.0/jrok-macos-x64 -o jrok
chmod +x jrok
sudo mv jrok /usr/local/bin/jrok

Windows (x86_64)

Download: jrok-windows-x64.exe

NPM (All Platforms)

npm install -g [email protected]

✨ Features

  • TCP Port Forwarding - Expose any local port
  • Docker Swarm Support - Load-balanced container services
  • Kubernetes Support - Native K8s service integration
  • Organization Management - Manage organizations from CLI
  • API Key Management - Create and revoke API keys
  • Config Persistence - Save credentials locally
  • Standalone Binary - No dependencies needed
  • Auto-reconnect - Resilient connections
  • HTTPS Automatic - SSL certificates handled automatically

🚀 Quick Start

1. Configure CLI (One-time Setup)

# Get API key from dashboard
jrok config --server https://tunnel.koompi.cloud -auth jrok_xxxxxxxx

# Verify configuration
jrok whoami

2. Expose a Local Port

# Start your local service
npm run dev  # Running on http://localhost:3000

# Expose it to the internet
jrok connect --domain myapp --port 3000

# Now accessible at https://myapp.koompi.cloud

3. Expose Docker Service

docker service create --name web-app --replicas 3 myapp:latest
jrok connect --domain web --docker-service web-app

4. Expose Kubernetes Service

kubectl apply -f deployment.yaml
jrok connect --domain api --k8s-service my-service:8080

📋 Requirements

  • Node.js: >= 18.0.0 (for NPM installation)
  • Jrok Server: Access to a jrok tunnel server

📚 Documentation

🐛 Bug Reports & Feedback

Found an issue or have a feature request? Please open an issue on GitHub.

📄 License

Apache License 2.0