
Research
/Security News
Shai Hulud Strikes Again (v2)
Another wave of Shai-Hulud campaign has hit npm with more than 500 packages and 700+ versions affected.
knuth-shuffle
Advanced tools
The Fisher-Yates (aka Knuth) shuffle for Browser and Node.js
'nuf said.
As Microsoft learned the hard way (see article below), function random() { return 0.5 - Math.random() } turns out to be no-so-random at all.
The fisher-yates shuffle is an algorithm so simple that even IEEE floating point math can't screw it up!
I put this on npm as knuth-shuffle because fisher-yates-shuffle
was just too long of a name and shuffle was already taken.
<script src="https://raw.github.com/coolaj86/knuth-shuffle/master/index.js"></script>
(function () {
'use strict';
var a = [2,11,37,42];
var b;
// The shuffle modifies the original array
// calling a.slice(0) creates a copy, which is assigned to b
b = window.knuthShuffle(a.slice(0));
console.log(b);
}());
Decentralized Install
npm install --save git+https://git.coolaj86.com/coolaj86/knuth-shuffle.js.git#v1.0
Centralized Install
npm install --save knuth-shuffle@1.0
(function () {
'use strict';
var shuffle = require('knuth-shuffle').knuthShuffle;
var a = [2,11,37,42];
var b;
// The shuffle modifies the original array
// calling a.slice(0) creates a copy, which is assigned to b
b = shuffle(a.slice(0));
console.log(b);
}());
FAQs
The Fisher-Yates (aka Knuth) shuffle for Browser and Node.js
The npm package knuth-shuffle receives a total of 19,046 weekly downloads. As such, knuth-shuffle popularity was classified as popular.
We found that knuth-shuffle demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers 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.

Research
/Security News
Another wave of Shai-Hulud campaign has hit npm with more than 500 packages and 700+ versions affected.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.