
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Pure Javascript / Typescript Implementation of xxHash
This is an implementation for the XXH32 Algorithm A 64-bit version might come a bit later.
npm install --save js-xxhash
Internally it uses TextEncoder to convert strings to a UTF-8 Uint8Array
s.
import { xxHash32 } from 'js-xxhash';
let seed = 0;
let str = 'My text to hash 😊';
let hashNum = xxHash32(str, seed);
console.log(hashNum.toString(16));
Expected:
af7fd356
import { xxHash32 } from 'js-xxhash';
let seed = 0;
let str = 'My text to hash 😊';
let hashNum = xxHash32(str, seed);
console.log(hashNum.toString(16));
// Using a bundler
import { xxHash32 } from 'js-xxhash';
// Using a CDN like jsDelivr
import { xxHash32 } from 'https://cdn.jsdelivr.net/npm/js-xxhash@{version}/index.mjs';
let seed = 0;
let str = 'My text to hash 😊';
let hashNum = xxHash32(str, seed);
console.log(hashNum.toString(16));
To evaluate performance this package was compared to:
One average a lorem-ipsum "word" is between 5 and 6 characters.
Running Perf Suite: xxhash-string-words-10
Evaluate xxhash performance with a string of 10 words.
✔ js-xxhash string 731_148.14 ops/sec
✔ xxhashjs string 432_753.87 ops/sec
✔ xxhash-wasm string 3_381_907.91 ops/sec
Running Perf Suite: xxhash-string-words-100
Evaluate xxhash performance with a string of 100 words.
✔ js-xxhash string 420_458.19 ops/sec
✔ xxhashjs string 124_443.56 ops/sec
✔ xxhash-wasm string 2_289_457.63 ops/sec
Running Perf Suite: xxhash-string-words-1000
Evaluate xxhash performance with a string of 1000 words.
✔ js-xxhash string 74_861.33 ops/sec
✔ xxhashjs string 16_656.57 ops/sec
✔ xxhash-wasm string 729_339.20 ops/sec
Running Perf Suite: xxhash-string-words-10000
Evaluate xxhash performance with a string of 10000 words.
✔ js-xxhash string 6_293.40 ops/sec
✔ xxhashjs string 551.90 ops/sec
✔ xxhash-wasm string 90_170.30 ops/sec
Running Perf Suite: xxhash-string-words-100000
Evaluate xxhash performance with a string of 100000 words.
✔ js-xxhash string 709.30 ops/sec
✔ xxhashjs string 40.05 ops/sec
✔ xxhash-wasm string 8_093.17 ops/sec
Running Perf Suite: xxhash-buffer-words-10
Evaluate xxhash performance with a buffer containing a string of 10 words.
✔ js-xxhash buffer 2_859_850.03 ops/sec
✔ xxhashjs buffer 699_053.22 ops/sec
✔ xxhash-wasm buffer 3_657_504.67 ops/sec
Running Perf Suite: xxhash-buffer-words-100
Evaluate xxhash performance with a buffer containing a string of 100 words.
✔ js-xxhash buffer 800_609.77 ops/sec
✔ xxhashjs buffer 402_424.91 ops/sec
✔ xxhash-wasm buffer 2_569_294.66 ops/sec
Running Perf Suite: xxhash-buffer-words-1000
Evaluate xxhash performance with a buffer containing a string of 1000 words.
✔ js-xxhash buffer 79_925.04 ops/sec
✔ xxhashjs buffer 55_568.13 ops/sec
✔ xxhash-wasm buffer 753_856.33 ops/sec
Running Perf Suite: xxhash-buffer-words-10000
Evaluate xxhash performance with a buffer containing a string of 10000 words.
✔ js-xxhash buffer 8_152.57 ops/sec
✔ xxhashjs buffer 6_046.82 ops/sec
✔ xxhash-wasm buffer 104_463.50 ops/sec
Running Perf Suite: xxhash-buffer-words-100000
Evaluate xxhash performance with a buffer containing a string of 100000 words.
✔ js-xxhash buffer 458.33 ops/sec
✔ xxhashjs buffer 602.90 ops/sec
✔ xxhash-wasm buffer 9_835.61 ops/sec
FAQs
Pure JS implementation of xxhash
The npm package js-xxhash receives a total of 55,497 weekly downloads. As such, js-xxhash popularity was classified as popular.
We found that js-xxhash demonstrated a healthy version release cadence and project activity because the last version was released less than 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
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.