Skip to content
Dashboard

Introducing support for WebAssembly at the Edge

Infrastructure-native Wasm for faster performance of computationally heavy workloads

Link to headingRun more languages on the Edge

z = (z ^ (z >> 16)) * 0x85ebca6b;

Line of code from the splitmix32 PRNG

z = Math.imul((z ^ (z >>> 16)), 0x85ebca6b);

JavaScript often requires workarounds for arithmetic

Link to headingFaster execution with WebAssembly

In this example, a JavaScript and C edge function (compiled in Wasm) run via brute force to solve a maze. For each solve, an SVG is created and the maze updated.
In this example, a JavaScript and C edge function (compiled in Wasm) run via brute force to solve a maze. For each solve, an SVG is created and the maze updated.

Link to headingGetting started

Ready to deploy?