@password-generator/package
TypeScript icon, indicating that this package has built-in type declarations

2.1.2 • Public • Published

Gitpod

NPM Version NPM Monthly Downloads

License Last Commit Language Most Used Implementations Repository Size

Forks Stars Watches

Welcome to password-generator-package 👋

🚧 password-generator-package in production... 🚧

Package with the algorithm to generate passwords

🔖 Table Of Contents


📃 About

This package contains the password generation algorithm, it was created for code reuse and easy maintenance!

Back To The Top


🤔 How To Use

💻 Desktop

Install package with you package-manager

yarn add @password-generator/package

Import and execute

import { generatePassword, Preferences } from '@password-generator/package'

const preferences: Preferences = {
  length: 9,
  initialText: 'abc',
  cases: {
    pronounceable: false,
    uppercase: true,
    lowercase: true,
    numbers: true,
    symbols: true,
  },
}

try {
  const password = generatePassword(preferences);
  console.log(password);
} catch (error) {
  console.error(error.message)
}

Back To The Top


🚀 Technologies

  • Typescript
  • Node

Back To The Top


🌱 Minimal Requirements

  • NodeJs

Back To The Top


🎇 Features

  • [x] Create algorithm
  • [x] Finish ambient config
  • [x] Create actions in repository

Back To The Top


💡 How To Contribute

  • Make a fork of this repository
  • Clone to you machine and entry on respective paste
  • Create a branch with your resource: git checkout -b my-feature
  • Commit your changes: git commit -m 'feat: My new feature'
  • Push your branch: git push origin my-feature
  • A green button will appear at the beginning of this repository
  • Click to open and fill in the pull request information

Contributions, issues and features requests are welcome!
📮 Submit PRs to help solve issues or add features
🐛 Find and report issues
🌟 Star the project

Back To The Top


🤗 Contributors

Mikael-R mateushnsoares

Back To The Top


👤 Author

🤓 Mikael Rolim de Aquino mikarg9@gmail.com

Back To The Top


🔏 License

Copyright © 2020 Mikael Rolim de Aquino mikarg9@gmail.com

This project is licensed by MIT License.

Back To The Top


This README was generated with 💟 by readme-template-generator

Package Sidebar

Install

npm i @password-generator/package

Weekly Downloads

6

Version

2.1.2

License

MIT

Unpacked Size

77.9 kB

Total Files

18

Last publish

Collaborators

  • mikael-r