1.0.2 • Published 11 years ago
node-password v1.0.2
node-password
Generate strong passwords
Installation
$ npm install node-passwordUsage
var Password = require('node-password').Password;
var pw = new Password();
// pw.toString() => 'aJi*2&4nLk_0l!k'Options
You can pass a configuration option to the Password() contstuctor.
var Password = require('node-password').Password;
var options = {
length: 5,
letters: true,
numbers: false,
special: false
};
var pw = new Password(options);regererate()
Generates a new password.
var Password = require('node-password').Password;
var pw = new Password();
// pw.toString() => 'aJi*2&4nLk_0l!k'
pw.regenerate();
// pw.toString() => 'laOjNWjA7^24$@1'toSafeString(s)
Return an obfuscated string of s or *.
var Password = require('node-password').Password;
var pw = new Password();
// pw.toSafeString() => '***************'