
Security News
Bun 1.2.19 Adds Isolated Installs for Better Monorepo Support
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
canvg-browser
Advanced tools
A port of canvg that properly works in the browser as CommonJS module.
rgbcolor
and stackblur
are required in the CommonJS way, toonpm install canvg-browser --save
Put a canvas on your page:
<canvas id="canvas" width="200px" height="200px"></canvas>
var canvg = require('canvg-browser'),
canvas = document.getElementById('canvas');
var svg = '<svg height="100" width="100"><circle cx="50" cy="50" r="40" stroke="black" /></svg>';
var options = {
log: false,
ignoreMouse: true
};
canvg(canvas, svg, options);
You can call canvg without parameters to replace all svg images on a page. See the example.
There is also a built in extension method to the canvas context to draw svgs similar to the way drawImage works:
var c = document.getElementById('canvas');
var ctx = c.getContext('2d');
ctx.drawSvg(SVG_XML_OR_PATH_TO_SVG, dx, dy, dw, dh);
FAQs
Javascript SVG parser and renderer on Canvas, adapted for CommonJS
The npm package canvg-browser receives a total of 3,581 weekly downloads. As such, canvg-browser popularity was classified as popular.
We found that canvg-browser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
Security News
Popular npm packages like eslint-config-prettier were compromised after a phishing attack stole a maintainer’s token, spreading malicious updates.
Security News
/Research
A phishing attack targeted developers using a typosquatted npm domain (npnjs.com) to steal credentials via fake login pages - watch out for similar scams.