Back to Libraries
Konva
11k
2D canvas library for desktop and mobile
🔥 TrendingGraphics/Canvas
License
MIT
Released
2015
Stars
11k
Use Cases
Interactive graphics, drag-and-drop editors, data visualization, image annotation
Code Example
import Konva from 'konva';
const stage = new Konva.Stage({ container: 'container', width: 500, height: 500 });
const layer = new Konva.Layer();
const circle = new Konva.Circle({ x: 100, y: 100, radius: 50, fill: 'red' });
layer.add(circle); stage.add(layer);