Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

generate-password-browser

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

generate-password-browser

Easy library for generating unique passwords in browsers.

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
18K
decreased by-14.26%
Maintainers
1
Weekly downloads
 
Created
Source

generate-password-browser (w/ Angular Support) Build Status

Generate-Password NPM

Generate Password is a (relatively) extensive library for generating random and unique passwords in browsers. This is a fork of the original generate-password package https://github.com/brendanashworth/generate-password, but unfortunately it doesn't and won't support browsers. Confirmed to be working with Angular 4, 5 and 6 in these browsers:

  • Google Chrome 60.0.3112.113
  • Firefox 55.0.3
  • Internet Explorer 11

Install

$ npm install generate-password-browser --save

Usage

generate([options])

Generate one password with the given options. Returns a string.

var generator = require('generate-password-browser');

var password = generator.generate({
	length: 10,
	numbers: true
});

// 'uEyMTw32v9'
console.log(password);
generateMultiple(amount[, options])

Bulk generate multiple passwords at once, with the same options for all. Returns an array.

var generator = require('generate-password-browser');

var passwords = generator.generateMultiple(3, {
	length: 10,
	uppercase: false
});

// [ 'hnwulsekqn', 'qlioullgew', 'kosxwabgjv' ]
console.log(passwords);

Available options

Any of these can be passed into the options object for each function.

NameDescriptionDefault Value
lengthInteger, length of password.10
numbers*Boolean, put numbers in password.false
symbols*Boolean or String, put symbols in password.false
lowercase*Boolean, put lowercase in passwordtrue
uppercase*Boolean, use uppercase letters in password.true
excludeSimilarCharactersBoolean, exclude similar chars, like 'i' and 'l'.false
excludeString, characters to be excluded from password.''
strictBoolean, password must include at least one character from each pool.false

*At least one should be true.

Keywords

FAQs

Package last updated on 08 Aug 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc