brendanashworth / node-murmurhash3

Node.js binding to jwerle's murmurhash3 implementation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

node-murmurhash Build Status Coverage Status

Binding to jwerle's murmurhash3.

Install

$ npm i node-murmurhash3 --save

Usage

var murmurhash = require('node-murmurhash3');

murmurhash.hash('Hello, world!');

murmurhash.hash(key[, seed])

  • key (String) The key to input to the Murmurhash v3 algorithm.
  • seed (Number) The optional seed to provide to the algorithm. Defaults to 0.

Hashes the given key with the given seed (seed is optional).

License

MIT

About

Node.js binding to jwerle's murmurhash3 implementation

License:MIT License


Languages

Language:JavaScript 68.3%Language:C++ 23.6%Language:Python 8.1%