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 🙏

© 2024 – Pkg Stats / Ryan Hefner

memory-helper

v1.2.0

Published

a small utility to assist in memory allocation with Typed Arrays.

Downloads

17

Readme

#memory-helper

This simple utility class is designed to help manage memory stored in JavaScript TypedArrays. It provides memory addresses (indices) based on past and present requests for arbitrary blocks of memory; these memory locations can subsequently be freed for reuse. The class throws errors if there is not a block of sufficient size remaining; however, it will not prevent developers from writing into adjacent blocks (or, for that matter, any arbitrary indices of their choice). For a solution with much more robust error handling / write protection see: https://github.com/codemix/malloc

The allocation scheme is an approximation of "first-fit". Other schemes may be explored in the future. This utility class was created to provide memory management for genish.js, an audio synthesis library.

##Example

// manage two minutes of stereo audio at 44.1 khz
let helper = MemoryHelper.create( 44100 * 60 * 2 )

// request index to store 1024 samples
let blockSize = 1024,
    idx = helper.alloc( blockSize )

// write noise to memory using index obtained through .alloc()
for( let i = idx; i < idx + blockSize; i++ ) {
  helper.heap[ i ] = Math.random()
}

// free block after use
helper.free( idx )

##API The index.js file exports a factory object, MemoryHelper.

Methods

####.create( numberOfElements, arrayType ) Each MemoryHelper instance contains a single JavaScript TypedArray, with an arbitrary number of elements. By default, the element type is Float32Array and the length of the array is 4096. To create a helper managing an array of sixteen 16-bit integers:

let helper = MemoryHelper.create( 16, Int16Array )

####.alloc( sizeOfMemoryRequest ) Reserve a block of memory and obtain a starting integer index for reading / writing to the block. An error is thrown if insufficient memory is remaining for the allocation request.

####.free( blockIndex ) Free a block beginning at the index blockIndex; this index should have been previously obtained from a call to .alloc(). An error is thrown if a blockIndex is passed that does not have a block index associated with it.

Properties

####.heap The .heap property represents the TypedArray instantiated during a call to MemoryHelper.create(). You can freely read / write to this array; however, the point of the MemoryHelper utility class is to do so using indices obtained from calls to the .malloc() method.

Development and Testing

There's nothing fancy in regards to development... no build script required. For testing simply run npm test (after installing all necessary packages via npm install). Tests use mocha and vanilla assert.