# hubot-passwdme

> A hubot script to generate a unique, secure password using the passwd.me API

Latest version **1.0.2** (published 2015-07-24) · MIT license · 0 weekly downloads

## Install

```sh
npm install hubot-passwdme
pnpm add hubot-passwdme
yarn add hubot-passwdme
bun add hubot-passwdme
```

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2015-07-24 |
| First published | 2015-07-24 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Billy Gunn |
| Maintainers | bgunn |
| Keywords | hubot, hubot-scripts |

## Links

- npm: https://www.npmjs.com/package/hubot-passwdme
- Repository: https://github.com/bgunn/hubot-passwdme
- Homepage: https://github.com/bgunn/hubot-passwdme#readme
- Issues: https://github.com/bgunn/hubot-passwdme/issues
- npm.io page: https://npm.io/package/hubot-passwdme

## Dependencies (2)

- [querystring](https://npm.io/package/querystring.md)
- [coffee-script](https://npm.io/package/coffee-script.md) ~1.9

## Recent versions

- 1.0.2 (latest) — 2015-07-24
- 1.0.1 — 2015-07-24
- 1.0.0 — 2015-07-24

## README

# hubot-passwdme

A hubot script to generate passwords using the passwd.me API

See [`src/passwdme.coffee`](src/passwdme.coffee) for full documentation.

## Installation

In your hubot directory, run:

`npm install hubot-passwdme --save`

Then add **hubot-passwdme** to your `external-scripts.json`:

```json
[
  "hubot-passwdme"
]
```

## Usage

Assuming your hubot instance is called hubot, you can instruct it to generate passwords as follows. Options can be provided in any order.

```
hubot pw <lenght> <type> <charset> <seperator>
hubot pw 15
hubot pwd 24 pronounceable period
```

**Options:** 

- lenght    : The length of the password between 8 and 64 characters (defaults to 12)
- Type      : random or pronounceable (defaults to random)
- charset   : mixedcasealphanumeric, numeric, lowercasealpha, uppercasealpha, mixedcasealpha, lowercasealphanumeric, uppercasealphanumeric (defaults to mixedcasealphanumeric)
- seperator : hyphen, period, exclamation, question ( Only used if type = pronounceable )

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