
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
array-keys
Advanced tools
Very simple library to manage array elements using a key instead of array index position. When dealing with very large sets of data all organized in an object reference, if the object structure is changing a lot you can end up with memory leaks and slow performance. In these cases it's better to keep an array of objects instead of and object of objects. The cost of iterating through the array is cheaper than the lack of garbage collection which can occur in large, changing, object hashes.
Should run in both node.js and browser environments.
var ak = new ArrayKeys({
identifier: 'key' // defaults to `id`
});
ak.getRecord('myInvalidKey'}); // returns undefined
ak.addRecord({
key: 'myKey1',
value: 'hello world!'
}); // returns true
ak.getRecord('myKey1'); // returns { key: 'myKey1', value: 'hello world!' }
ak.addRecord({
key: 'myKey2',
value: 'hello space!'
}); // returns true
ak.forEachRecord(function (record) {
// this function is called once for each record
}).finally(function (count) {
// function called after the above callback is called for each record
// count is the total number of records processed
});
ak.getIdentifiers(); // returns ['myKey1', 'myKey2']
ArrayKeys
also optionally supports emitting events. This functionality must be explicity enabled during object instantiation.
add
remove
update
var ak = new ArrayKeys({
emitEvents: true
});
ak.events.on('add', function (record) {
console.log(record.id); // 'foobar'
});
ak.addRecord({
id: 'foobar',
here: [ 'is', 'some' ],
data: true
});
Project developed and maintained by Nick Jennings
FAQs
a simple interface to manage large arrays of objects easily
The npm package array-keys receives a total of 203 weekly downloads. As such, array-keys popularity was classified as not popular.
We found that array-keys 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.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.