Back to Libraries
Paper.js
14k
Vector graphics scripting framework
License
MIT
Released
2011
Stars
14k
Use Cases
Vector illustrations, generative art, path manipulation, interactive graphics
Code Example
import paper from 'paper';
paper.setup('myCanvas');
const path = new paper.Path.Circle(new paper.Point(80, 50), 30);
path.fillColor = 'red';