node-hash
A JavaScript implementation of Hash
data structure. As far as this module is concerned, a Hash
is a key-value pair list of items of the same type. It supports all primitive JavaScript types and arbitrary Objects.
Use node-hash
when you have a list of items of the same type stored by key, and you don't want to check types in you application code. You need to provide your own comparator
function and node-hash
will throw
when it fails. Generic comparator function for all JavaScript primitive types are exported as object on Hash.comparator
.
This implementation doesn't try to substitute the ES6 map
implementation, it just represents a lightweight alternative implementation.
Current Version: 1.1.0
Build Status:
Node Support: 0.8, 0.10, 0.11
Install
npm install node-hash
Usage
The keys cannot be defined dynamically, but must be defined at construct time, since the library uses Object.defineProperty
to define getters and setters correctly. The constructor also takes a comparator function used to check the value inserted into the Hash. You might also set an initial value to all keys, passing the third parameter.
Hash of Date
var assert = require('assert');var Hash = require('node-hash'); var times = new Hash( ['created_at', 'last_seen', 'last_modified', 'future_action_at'], Hash.comparator.Date, new Date()); // uses a predefined setter which will use the `comparator` function to check the value typetimes.created_at = new Date();times.last_seen = new Date();times.last_modified = new Date(); // these will all throwassert.throws( function() { times.last_seen = 'yesterday' } );assert.throws( function() { times.last_seen = 100 } );assert.throws( function() { times.last_seen = [] } ); // uses a predefined getterconsole.log( times.created_at );// Fri Aug 08 2014 11:31:04 GMT+0100 (BST) // returns the internal key-value storeconsole.log( times.getData() );/*{ created_at: Fri Aug 08 2014 11:31:04 GMT+0100 (BST), last_seen: Fri Aug 08 2014 11:31:04 GMT+0100 (BST), last_modified: Fri Aug 08 2014 11:31:04 GMT+0100 (BST), future_action_at: Fri Aug 08 2014 11:31:04 GMT+0100 (BST)}*/ // returns all the keys passed to the contructorassert( times.keys(), ['created_at', 'last_seen', 'last_modified', 'future_action_at'] ); // returns the value of the removed key, or false if the key is not usedtimes.remove( 'last_modified' ); // returns the number of keysassert( times.length, 4 ); // resets the hashtimes.reset();
Hash of number
var Hash = require( 'node-hash' ); var dailyStats = new Hash( ['min', 'max', 'avg', 'samples'], Hash.comparator.number); dailyStats.min = 0;dailyStats.min = 10;dailyStats.samples = 1000;dailyStats.avg = 4.3445345;
marshall
A member function that converts a node-hash
into a plain Javascript object ready to be serialized. A custom marhall
function can be passed as argument.
var hash = new Hash( ['key1', 'key2', 'key3'], Hash.comparator.Date);hash.key1 = new Date(); // {key1: new Date()}hash.marshall(); // {key1: timestamp}hash.marshall( function (date) { return date.getTime();});
unmarshall
A static non-member function that converts a plain Javascript object into a node-hash
using Hash.unmarshall
. A custom unmarshall
function can be passed as argument.
// data is a node-hashvar data = Hash.unmarshall( { key1: new Date(2013, 0, 1) }, Hash.comparator.Date); // data is a node-hashvar data = Hash.unmarshall( { key1: (new Date(2013, 0, 1)).getTime() }, Hash.comparator.Date, function (time) { return new Date(time); });
test
npm test
Development
The dev dependencies are coffee-script
, mocha
and should
. The coffeescript is compiled down to javascript automatically before publishing using the 'prepublish' script in 'package.json'. coffeescript files and test files are deliberately left out of the package via '.npmignore' because no one likes needlessly big modules.
Contributions are welcome!
License
MIT