#otp-generator
'otp-generator' is simple one time password generator and can be used as password generator.
npm install otp-generator --save
const otpGenerator = require('otp-generator')
otpGenerator.generate(6, { upperCaseAlphabets: false, specialChars: false });
Arguments
length
- length of password. Optional ifoptions
is optional. default length is 10.options
- optionaldigits
- Default:true
true value includes digits in OTPlowerCaseAlphabets
- Default:true
true value includes lowercase alphabets in OTPupperCaseAlphabets
- Default:true
true value includes uppercase alphabets in OTPspecialChars
- Default:true
true value includes special Characters in OTP
npm test