GitHub - VictorTaelin/WebMonkeys: Massively parallel GPU programming on JavaScript, simple and clean.
WebMonkeys
Allows you to spawn thousands of parallel tasks on the GPU with the simplest, dumbest API possible. It works on the browser (with browserify) and on Node.js. It is ES5-compatible and doesn't require any WebGL extension.
Usage
On the browser, add <script src="WebMonkeys.js"><script> to your HTML. On Node.js, install it from npm:
npm install webmonkeys --save
The example below uses the GPU to square all numbers in an array in parallel:
// Creates a WebMonkeys object
const monkeys = requ...
Read more at github.com