An interactive guide demonstrating how to create visually stunning WebAssembly applications with SVG renderers.
Start the DemoThis SVG is dynamically rendered by WebAssembly code running in your browser.
.wasm { const svgNS = "http://www.w3.org/2000/svg"; const circle = document.createElementNS(svgNS, 'circle'); circle.setAttribute('cx', '100'); circle.setAttribute('cy', '100'); circle.setAttribute('r', '50'); circle.setAttribute('fill', '#6f42c1'); document.getElementById('svg').appendChild(circle); }