v1.0.0-alpha.7 Released@optivor/next Package Update

Ultra-Fast Open Source
Image Infrastructure

Transform, optimize, and deliver WebP & AVIF media at scale using libvips. Bring your own AWS S3, Cloudflare R2, MinIO, or custom storage drivers under the Apache 2.0 License.

Explore DocumentationStar on GitHub
cURL & HTTP API
● HTTP 200 OK
# Request image resize & WebP conversion
curl -i "http://localhost:8080/image/r2/photo.jpg?w=800&fit=smart&format=webp"
X-Optivor-Cache: HIT (redis)
Content-Type: image/webp
X-Transform-Time: 1.8ms
@optivor/next Package
// next.config.mjs or app/layout.tsx
import { optivorLoader } from "@optivor/next";
import Image from "next/image";

export default function HeroBanner() {
  return (
    <Image
      loader={optivorLoader}
      src="primary-images/hero-banner.jpg"
      width={1200}
      height={600}
      alt="Optivor High Performance"
    />
  );
}
< 2.0 ms
Transform Latency (libvips)
4,200+
Req / Sec (Single Instance)
18 MB
Idle RAM Footprint
Apache 2.0
Open-Source License
Product Architecture & Roadmap

Open-Source Core Today. Managed SaaS Tomorrow.

Optivor is built as an open-core framework under Apache 2.0. Self-host the engine for free or scale effortlessly with our upcoming managed cloud control plane.

OPEN-SOURCE ENGINE (APACHE 2.0)$0 / Free

Self-Hosted Community Core

Fully open-source Apache 2.0 runtime engine for engineering teams who want complete infrastructure control and zero transformation billing.

  • Unlimited Image Transformations
  • Bring-Your-Own-Storage (S3, R2, B2, MinIO)
  • Sub-10ms Native libvips Processing
  • Redis & Local Disk LRU Cache Backends
  • CLI Tooling, Helm Charts & Systemd
OPTIVOR CLOUD (MANAGED SAAS)COMING SOON

Managed Control Plane

Turnkey SaaS platform for teams requiring zero DevOps overhead, global edge acceleration, and centralized observability.

  • Global Edge CDN Acceleration Network
  • Zero-Ops Infrastructure & Automatic Scaling
  • Team Workspaces & Role-Based Access
  • Real-Time Bandwidth & Transformation Analytics
  • Automated WAF & HMAC Signature Management

Engineered for Speed, Control & Cost Efficiency

Eliminate expensive per-image transformation bills with Apache 2.0 open-source software.

Sub-10ms Transformations

Powered by native libvips bindings, Optivor processes images up to 10x faster than traditional ImageMagick solutions.

Bring-Your-Own-Storage

Connect directly to your existing buckets on AWS S3, Cloudflare R2, MinIO, or Backblaze B2. Optivor reads directly without copying assets.

Out-of-Process Drivers

Modular driver architecture via --optivor-handshake. Build custom storage drivers in Go, Rust, Python, or Node.js.

Deploy in Seconds

Launch production containers, Helm releases, or systemd services.

docker run
docker run -d \
  --name optivor \
  -p 8080:8080 \
  -v $(pwd)/optivor.yaml:/etc/optivor/optivor.yaml:ro \
  optivor/optivor:latest