1.0.1 • Published 4 years ago

cspd-random-password v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

Generate a random password. You can set your own characters set, password length. By default, it will generate a password of length 12 with the default characters set which are 0-9, a-z, A-Z.

Usage

The plugin is very easy to use. Just call the function like you can see below:

var randpwd = require('cspd-random-password');
randpwd(); // return a random password

The above function will create a password of 12 characters. You can also change the characters set and password length just by passing it to the function just like you can see below:

var randpwd = require('cspd-random-password');
randpwd('0123456789@#&-/!()',16) // return random password of characters 16

This python package is submitted by a CodeSpeedy team member.

1.0.1

4 years ago

1.0.0

4 years ago