# passmaster

> PassMaster: Tu aliado confiable para generar contraseñas aleatorias y seguras al instante. Crea combinaciones únicas de caracteres con un solo comando, personalizando longitud, tipo y cantidad de caracteres. Además, añade prefijos o sufijos según tus pref

Latest version **1.0.7** (published 2023-08-22) · MIT license · 0 weekly downloads

## Install

```sh
npm install passmaster
pnpm add passmaster
yarn add passmaster
bun add passmaster
```

## Health

**Score 20/100 (F)** — status: abandoned.

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.7 |
| Published | 2023-08-22 |
| First published | 2023-08-21 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 40.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | DaniiDev |
| Maintainers | danidev_25 |
| Keywords | passmaster, generator, password, password generator, security, encryption, random, options, configuration, utility |

## Links

- npm: https://www.npmjs.com/package/passmaster
- Repository: https://github.com/Danii-cmd/PassMaster
- Homepage: https://github.com/Danii-cmd/PassMaster#readme
- Issues: https://github.com/Danii-cmd/PassMaster/issues
- npm.io page: https://npm.io/package/passmaster

## Alternatives

- [jsforce](https://npm.io/package/jsforce.md) — 851.2K weekly downloads
- [react-native-qrcode-svg](https://npm.io/package/react-native-qrcode-svg.md) — 693.5K weekly downloads
- [@salesforce/plugin-data](https://npm.io/package/@salesforce/plugin-data.md) — 394.9K weekly downloads
- [@backstage/plugin-search-common](https://npm.io/package/@backstage/plugin-search-common.md) — 308.5K weekly downloads
- [@chain-registry/types](https://npm.io/package/@chain-registry/types.md) — 38.4K weekly downloads

## Recent versions

- 1.0.7 (latest) — 2023-08-22
- 1.0.6 — 2023-08-22
- 1.0.5 — 2023-08-22
- 1.0.4 — 2023-08-22
- 1.0.3 — 2023-08-21
- 1.0.2 — 2023-08-21
- 1.0.1 — 2023-08-21
- 1.0.0 — 2023-08-21

## README

��# PassMaster

Welcome to your Trusted Companion for Instant, Secure, and Random Password Generation. This is a small, ongoing project where I'm continuously enhancing the features. Easily craft unique character combinations with a single command, tailoring the length, type, and quantity of characters to your needs. You can even personalize with prefixes or suffixes, aligning with your preferences.&#x1F4A1; Safeguarding your accounts and data has never been simpler, making it ideal for swiftly creating accounts and elevating your online security. Join me on this journey of refinement and empowerment! &#x2728;&#x1F512;

*This is a small personal project to put my knowledge into practice in node.js. If you'd like to use it, go ahead, it would make me happy!* &#x1F603;

## Working on...

Working on a new implementation for encrypting and decrypting passwords. &#x1F527; &#x1F4BB;

## Quick start

To install PassMaster, use the following command :

```
 npm i passmaster
```

usage :
```javascript
import { passMasterGenerator } from "passmaster";

let generatedPassword = passMasterGenerator({
    leng: 8,
    number: true,
    upper: false,
    specialChar: false,
    specialCharClient: ["^", "*", "_", "-", ":", ";", ",", ".", "/"],
    changeS: false,
});
```

The properties shown above are the default values. There are certain features they must have :
- leng : Length of **6** to **16** characters.
- number : If you want to add numbers to the generated password, use **true** or **false** values.
- upper : If you want to add uppercase letters to the generated password, use **true** or **false** values.
- specialChar : If you want to add special characters ["^", "*", "_", "-", ":", ";", ",", ".", "/"] to the generated password, use **true** or **false** values. *(The default values in changeS cannot be used here)*
- specialCharClient : If you want to use other special characters and not use the default ones, you just need to set **specialCharClient: ["*your_symbol*", "*your_symbol*", "*your_symbol*"]**, and in **_your_symbol_**, place the characters you wish to use.
- changeS : If you want to replace some letters with special characters in the generated password, use **true** or **false** values. **_Default symbols and their corresponding letters :_** _["@", "!", "$", "&", "%", "~", "+", "<", "|", "#"] | [a, i, s, y, x, n, t, c, l, o]_ *(Affects both uppercase and lowercase)*

---
_Source: https://npm.io/package/passmaster · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
