
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
hashcoll-fast
Advanced tools
Fast hashset and hashmap implementation, written in Rust and compiled to Webassembly, based on hashbrown, a Rust port of Google's high-performance SwissTable hash map.
Fast hashset and hashmap implementation, written in Rust and compiled to Webassembly, based on hashbrown, a Rust port of Google's high-performance SwissTable hash map.
$ yarn add hashcoll-fast
HashSet<String>
const HashSet = require("hashcoll-fast").HashSet;
const set = new HashSet(4);
set.insert('foo');
set.insert('bar');
set.contains('foo'); // true
set.contains('tree'); // false
set.remove('foo');
HashMap<String, String>
const HashMap = require("hashcoll-fast").HashMap;
const map = new HashMap(4);
map.insert('foo', 'bar');
map.insert('tree', 'house');
map.contains('foo'); // true
map.contains('zig'); // false
map.remove('foo'); // 'bar'
Vec<u8>
HashSetRaw<Vec<u8>>
const HashSetRaw = require("./pkg").HashSetRaw;
const set = new HashSetRaw(4);
set.insert(Buffer.from('foo'));
set.insert(Buffer.from('bar'));
set.contains(Buffer.from('foo')); // true
set.contains(Buffer.from('tree')); // false
set.remove(Buffer.from('foo')); // Uint8Array(3) [ 102, 111, 111 ]
HashMap<String, Vec<u8>>
const HashMapRaw = require("hashcoll-fast").HashMap;
const map = new HashMapRaw(4);
map.insert('foo', Buffer.from('bar'));
map.insert('tree', Buffer.from('house'));
map.get('foo'); // // Uint8Array(3) [ 102, 111, 111 ]
map.get('trexe'); // undefined
map.contains('foo'); // true
map.contains('zig'); // false
map.remove('foo'); // Uint8Array(3) [ 102, 111, 111 ]
$ make
FAQs
Fast hashset and hashmap implementation, written in Rust and compiled to Webassembly, based on hashbrown, a Rust port of Google's high-performance SwissTable hash map.
We found that hashcoll-fast 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
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.