passjs-gen
v1.0.2
Published
Generate random password with variable length, alpha and symbols.
Readme
Password Generator
This is a simple password generator using javascript and npm. It takes 3 parameters:
- Length of the password
- Indicator if numbers are included
- Indicator if symbols are included
Installation
$ npm install passjs-genUsage
var passjs = require('passjs-gen');
console.log(passjs.generatePassword(10,true,false));