npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

walloc

v0.1.0

Published

malloc() and free() in WebAssembly

Readme

walloc

Current Version Build Status via Travis CI Dependencies belly-button-style

malloc() and free() bindings for WebAssembly in JavaScript.

Basic Usage

Pass an absolute filename to the walloc() function. The result is the exports property of a WebAssembly.Instance.

'use strict';
const Walloc = require('walloc');
const memory = new WebAssembly.Memory({ initial: 256, maximum: 256 });
const walloc = new Walloc({
  memory,
  getTotalMemory () { return memory.buffer.byteLength; }
});

const ptr = walloc.malloc(2048);  // Allocate 2048 bytes.
// Do something with the allocated memory.
walloc.free(ptr); // Free the memory.

API

walloc exports a single class with the following API.

Walloc(options) constructor

  • Arguments
    • options (object) - A configuration object supporting the following schema.
      • DYNAMICTOP_PTR (number) - The value sbrk() returns. Optional. Defaults to 0.
      • STACKTOP (number) - The top of the stack. Optional. Defaults to 0.
      • memory (object) - An instance of WebAssembly.Memory.
      • abort(err) (function) - A function that is called when an error occurs. The error is passed as the err parameter. Optional. Defaults to a function that throws err.
      • abortOnCannotGrowMemory() (function) - A function that is called when memory allocation fails, and the WebAssembly memory cannot be grown. Optional. Defaults to a function that calls abort() with an error.
      • enlargeMemory() (function) - A function that attempts to grow the WebAssembly memory. Optional. Defaults to a function that calls abortOnCannotGrowMemory().
      • getTotalMemory() (function) - A function that returns the total size of the memory. Optional. Defaults to a function that returns 0.
      • ___setErrNo(errno) (function) - A function that sets errno in C. Optional.

Constructs a new allocator instance. Must be called with new.

Walloc.prototype.malloc(size)

  • Arguments
    • size (number) - The number of bytes to allocate.
  • Returns
    • ptr (number) - The base address of the allocated memory in the WebAssembly memory.

Attempts to allocate a block of memory with size size. On success, the base address is returned. Throws if memory cannot be allocated.

Walloc.prototype.free(ptr)

  • Arguments
    • ptr (number) - The base address of the allocated memory block being freed.
  • Returns
    • Nothing

Releases the block of memory with base address ptr.