# hornshash

> A Very memory human readible hash

Latest version **0.0.3** (published 2014-05-13) · MIT license · 0 weekly downloads

## Install

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

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.3 |
| Published | 2014-05-13 |
| First published | 2014-05-01 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Nathan Giardina |
| Maintainers | mcd |
| Keywords | human, hash |

## Links

- npm: https://www.npmjs.com/package/hornshash
- Repository: https://github.com/McDeez/hornshash
- Issues: https://github.com/McDeez/hornshash/issues
- npm.io page: https://npm.io/package/hornshash

## Alternatives

- [@gemini-wallet/core](https://npm.io/package/@gemini-wallet/core.md) — 515.6K weekly downloads
- [utility](https://npm.io/package/utility.md) — 416.6K weekly downloads
- [@primno/dpapi](https://npm.io/package/@primno/dpapi.md) — 7.2K weekly downloads
- [pi-readseek](https://npm.io/package/pi-readseek.md) — 3.7K weekly downloads
- [@emilia-protocol/verify](https://npm.io/package/@emilia-protocol/verify.md) — 1.1K weekly downloads

## Recent versions

- 0.0.3 (latest) — 2014-05-13
- 0.0.2 — 2014-05-02
- 0.0.1 — 2014-05-01

## README

hornshash
=========

A Human Readable and very memorable hash generator using unsavory words. WARNING NSFW!


This is a really simple POC for a project I've been working on, all it does is take a dictionary of bad words and generates a hash with a set number of them

## Usage

```javascript
var hornshash=require('hornshash');
var HH= new hornshash();

var hash=HH.hash();
```

hornshash will also take in an options JSON object allowing you to set the number of words it will put out in the hash and the delimiter

```javascript
var hornshash=require('hornshash');
var options={
              words:7, //default is 4
              delimiter:"|" //default is " "
            };
var HH=new hornshash();
var hash=HH.hash();
```

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