EVE Flipper is a local-first market analysis platform for EVE Online traders. It combines live ESI order books, historical market behavior, and execution-aware math to surface actionable opportunities across multiple trading workflows.
Flipper (Radius): local buy/sell opportunities with execution-aware metrics.Regional Trade: cross-region day-trade scanner with target marketplace controls and grouped output.Contract Arbitrage: contract valuation and liquidation scenarios.Route: multi-hop route builder with ISK/jump constraints.Station Trading: same-station scanner with liquidity/risk filters.Industry: production planning and industry ledger workflows.War Tracker: demand/activity view for region-level opportunities.PLEX+: PLEX analytics and profitability dashboards.
Execution-aware pricing: expected fill price, slippage, fillability, and real profit fields.System blacklist: ignore selected systems globally in scan parameters.Batch Builder: build same-route cargo manifests from a selected deal.Auto-refresh: cache-aware refresh for Flipper and Regional tabs.Player structures support: optional structure inclusion (requires EVE login and access).Watchlist + Scan History: persist and revisit tracked items and previous scans.
- Single backend binary with embedded frontend.
- Default bind:
127.0.0.1:13370. - SQLite persistence for config, history, and local state.
| Station Trading | Route Trading | Flipper (Radius) |
|---|---|---|
![]() |
![]() |
![]() |
Download the latest build:
Release asset naming:
- Classic binary:
eve-flipper-windows-amd64.exe(andlinux/darwinvariants) - Wails desktop binaries:
eve-flipper-wails-windows-amd64.exe,eve-flipper-wails-linux-amd64,eve-flipper-wails-linux-arm64,eve-flipper-wails-darwin-amd64,eve-flipper-wails-darwin-arm64
Run the binary and open:
http://127.0.0.1:13370
Prerequisites:
- Go
1.25+ - Node.js
20+ - npm
git clone https://github.com/ilyaux/Eve-flipper.git
cd Eve-flipper
npm -C frontend install
npm -C frontend run build
go build -o build/eve-flipper .
./build/eve-flipperWindows PowerShell helpers:
.\make.ps1 build
.\make.ps1 runUnix Make targets:
make build
make runThis mode keeps the existing runtime modes untouched (Go embedded web app and Tauri),
and adds an additional desktop build powered by Wails.
PowerShell:
.\make.ps1 wailsOutput:
build/eve-flipper-wails.exe
Manual build equivalent:
go build -tags wails,production -ldflags "-s -w -H=windowsgui -X main.version=dev" -o build/eve-flipper-wails.exe .Run directly:
.\make.ps1 wails-runUnix Make:
make wails
make wails-run./eve-flipper --host 127.0.0.1 --port 13370| Flag | Default | Description |
|---|---|---|
--host |
127.0.0.1 |
Bind address (0.0.0.0 for LAN/remote access) |
--port |
13370 |
HTTP port |
Many scanners work without login, but these features require EVE SSO:
- Character-aware fees/skills autofill
- Character orders/assets-based workflows
- Player structure market data and structure names
- Corporation dashboards/endpoints
Create .env in repo root for local/source builds:
ESI_CLIENT_ID=your-client-id
ESI_CLIENT_SECRET=your-client-secret
ESI_CALLBACK_URL=http://localhost:13370/api/auth/callbackDo not commit .env.
Backend:
go run .Frontend dev server:
npm -C frontend install
npm -C frontend run devTests:
go test ./...Production frontend build check:
npm -C frontend run build- Project wiki: https://github.com/ilyaux/Eve-flipper/wiki
- Getting Started: https://github.com/ilyaux/Eve-flipper/wiki/Getting-Started
- API Reference: https://github.com/ilyaux/Eve-flipper/wiki/API-Reference
- Station Trading: https://github.com/ilyaux/Eve-flipper/wiki/Station-Trading
- Contract Scanner: https://github.com/ilyaux/Eve-flipper/wiki/Contract-Scanner
- Execution Plan: https://github.com/ilyaux/Eve-flipper/wiki/Execution-Plan
- PLEX Dashboard: https://github.com/ilyaux/Eve-flipper/wiki/PLEX-Dashboard
- By default, server listens only on localhost.
- ESI credentials are optional for non-SSO features.
- If exposed beyond localhost (
--host 0.0.0.0), use your own network hardening (firewall/reverse proxy/TLS).
See:
CONTRIBUTING.md
MIT License. See LICENSE.
EVE Flipper is an independent third-party project and is not affiliated with CCP Games. EVE Online and related trademarks are property of CCP hf.


