
Research
GemStuffer Campaign Abuses RubyGems as Exfiltration Channel Targeting UK Local Government
GemStuffer abuses RubyGems as an exfiltration channel, packaging scraped UK council portal data into junk gems published from new accounts.
@jpweeks/typedarray-pool
Advanced tools
A global pool for typed arrays.
var pool = require("typedarray-pool")
//Allocate a buffer with at least 128 floats
var f = pool.malloc(128, "float")
// ... do stuff ...
//When done, release buffer
pool.free(f)
npm install typedarray-pool
var pool = require("typedarray-pool")
pool.malloc(n[, dtype])Allocates a typed array (or ArrayBuffer) with at least n elements.
n is the number of elements in the array
dtype is the data type of the array to allocate. Must be one of:
"uint8""uint16""uint32""int8""int16""int32""float""float32""double""float64""arraybuffer""data""uint8_clamped""buffer"Returns A typed array with at least n elements in it. If dtype is undefined, an ArrayBuffer is returned.
Note You can avoid the dispatch by directly calling one of the following methods:
pool.mallocUint8pool.mallocUint16pool.mallocUint32pool.mallocInt8pool.mallocInt16pool.mallocInt32pool.mallocFloatpool.mallocDoublepool.mallocArrayBufferpool.mallocDataViewpool.mallocUint8Clampedpool.free(array)Returns the array back to the pool.
array The array object to return to the pool.Note You can speed up the method if you know the type of array before hand by calling one of the following:
pool.freeUint8pool.freeUint16pool.freeUint32pool.freeInt8pool.freeInt16pool.freeInt32pool.freeFloatpool.freeDoublepool.freeArrayBufferpool.freeDataViewpool.freeUint8Clampedpool.freeBufferpool.clearCache()Removes all references to cached arrays. Use this when you are done with the pool to return all the cached memory to the garbage collector.
(c) 2014 Mikola Lysenko. MIT License
FAQs
Reuse typed arrays
The npm package @jpweeks/typedarray-pool receives a total of 61 weekly downloads. As such, @jpweeks/typedarray-pool popularity was classified as not popular.
We found that @jpweeks/typedarray-pool demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
GemStuffer abuses RubyGems as an exfiltration channel, packaging scraped UK council portal data into junk gems published from new accounts.

Company News
Socket was named to the Rising in Cyber 2026 list, recognizing 30 private cybersecurity startups selected by CISOs and security executives.

Research
Socket detected 84 compromised TanStack npm package artifacts modified with suspected CI credential-stealing malware.