GoWM Navigation

GoWM - Wasm Manager

v1.0.0

Cache Active
100% Open Source

Go Wasm Manager

The complete open-source toolkit for seamlessly integrating WebAssembly modules into your JavaScript projects with zero configuration and maximum performance.

WASM Modules
Functions
Total Size
Yes
100% Open Source

Simple by design

Get started with GoWM in just a few lines of code.

1

Install

Add GoWM to your project

npm install gowm
2

Import

Import the loader function

import { loadFromGitHub } from 'gowm'
3

Load & Use

Load and call WASM functions

const math = await loadFromGitHub('benoitpetit/wasm-modules-repository', {
main.js
// Install: npm install gowm
import { loadFromGitHub } from 'gowm'

// Load any WASM module from GitHub
const math = await loadFromGitHub('benoitpetit/wasm-modules-repository', {
  branch: 'master',
  name: 'math-wasm'
})

// Call functions directly
const result = math.call('add', 5, 3)
console.log(result) // 8

// Works with any function
const factorial = math.call('factorial', 5)
console.log(factorial) // 120
Ready to use in production
TypeScript ready

Everything you need

From development to production, GoWM scales with your needs.

Framework Agnostic

Works seamlessly with React, Vue, Svelte, and vanilla JavaScript. Built-in hooks and composables included for optimal developer experience.

GitHub Integration

Load WASM modules directly from GitHub repositories with branch and tag support. Automatic version detection and updates.

Type Safe

Full TypeScript support with automatic type detection, intelligent IntelliSense, and robust error handling throughout.

High Performance

Optimized loading strategies, intelligent caching, and minimal overhead for production-ready applications.

Universal Support

Browser, Node.js, and edge runtime compatibility with consistent APIs across all environments.

100% Open Source

Completely open source with MIT license. No hidden fees, no vendor lock-in, just pure community-driven development.

100% Open Source

Built by developers, for developers

GoWM is completely open source under the MIT license. No hidden fees, no vendor lock-in, no restrictions. Fork it, modify it, contribute to it – the choice is yours.

MIT License
Free forever
Community
Driven
Open Core
Transparent
Made for
The community