Socket
Socket
Sign inDemoInstall

@rabbit-company/password-generator

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

@rabbit-company/password-generator

Password generator


Version published
Weekly downloads
12
decreased by-84.21%
Maintainers
1
Weekly downloads
 
Created
Source

PasswordGenerator-JS

Password generator implemented in JavaScript (ES6).

This library will auto generate random secure passwords.

Usage

1. Download library

npm i --save @rabbit-company/password-generator

2. Import library

import PasswordGenerator from "@rabbit-company/password-generator";

3. Generate Password

/*

  Parameters:
  1. Length (Number) <10>
  2. Uppercase (Bool) <true>
  3. Numbers (Bool) <true>
  4. Symbols (Bool) <true>

*/

// Generate 10 character long password with Uppercase characters, Numbers and Symbols.
PasswordGenerator.generate();

// Generate 15 character long password with Uppercase characters, Numbers and Symbols.
PasswordGenerator.generate(15);

// Generate 20 character long password with Uppercase characters and Numbers.
PasswordGenerator.generate(20, true, true, false);

Keywords

FAQs

Package last updated on 08 Mar 2023

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