Generate cryptographically secure passphrases at a set entropy.
var passphrase = require('passphrase');
var entropy = 90;
passphrase(entropy, function(_, phrase, actualEntropy) {
console.log('My passphrase is:', phrase);
});
Link to the browser.js file, and the passphrase function is in global scope.