dev-server

Installation
SKILL.md

Dev Server

The Editframe dev server provides local media routes, on-demand video transcoding, and asset caching. Local media processing needs no cloud API. The URL-signing route uses the Editframe cloud API.

Pick one integration, based on your framework.

  • Vite (the html/react templates from npm create @editframe): @editframe/vite-plugin.
  • Next.js (the nextjs template): @editframe/nextjs-plugin.
  • Any other toolchain (Webpack, Rspack, a custom Node.js server): @editframe/dev-server directly.

All three wrap the same implementation. A scaffolded project already includes the right one. See the editframe-create skill.

Vite Setup

// vite.config.ts
import { defineConfig } from "vite";
import { vitePluginEditframe } from "@editframe/vite-plugin";
Installs
39
GitHub Stars
18
First Seen
Aug 13, 2026
dev-server — editframe/skills