Package with the algorithm to generate password
npm install @password-generator/package
 
  !Language Most Used  !Repository Size
  
> Package with the algorithm to generate passwords
- 📃 About
- 🤔 How To Use
- 🚀 Technologies
- 🌱 Minimal Requirements
- 🎇 Features
- 💡 How To Contribute
- 🤗 Contributors
- 👤 Author
- 🔏 License
---
This package contains the password generation algorithm, it was created for code reuse and easy maintenance!
---
#### 💻 Desktop
Install package with you package-manager
``sh`
yarn add @password-generator/package
Import and execute
`typescript
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)
}
`
---
- Typescript
- Node
---
- NodeJs
---
- [x] Create algorithm
- [x] Finish ambient config
- [x] Create actions in repository
---
- 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-featuregit commit -m 'feat: My new feature'
- Commit your changes: git push origin my-feature`
- Push your branch:
- 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
---
---
🤓 Mikael Rolim de Aquino
- Github: @Mikael-R
---
Copyright © 2020 Mikael Rolim de Aquino
This project is licensed by MIT License.
---
_This README was generated with 💟 by readme-template-generator_