# markoff

> Markov Chaining

Latest version **2.2.0** (published 2014-08-06) · 0 weekly downloads

## Install

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

## 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 | 2.2.0 |
| Published | 2014-08-06 |
| First published | 2014-07-21 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 3 |
| Author | Joshua T Corbin |
| Maintainers | jcorbin |

## Links

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

## Recent versions

- 2.2.0 (latest) — 2014-08-06
- 2.1.1 — 2014-08-06
- 2.1.0 — 2014-08-04
- 2.0.1 — 2014-08-04
- 2.0.0 — 2014-07-30
- 1.0.4 — 2014-07-21
- 1.0.3 — 2014-07-21
- 1.0.2 — 2014-07-21
- 1.0.1 — 2014-07-21

## README

# markoff

<!--
    [![build status][build-png]][build]
    [![Coverage Status][cover-png]][cover]
    [![Davis Dependency status][dep-png]][dep]
-->

<!-- [![NPM][npm-png]][npm] -->

<!-- [![browser support][test-png]][test] -->

Markov Chaining

## Example

```js
var Markov = require("markoff");
var mark = new Markov();

[
  "the quick brown fox jumps",
  "be quick now",
  "now is the time for all good men"
].forEach(function(sentence) {
  mark.addTokens(sentence.split(/\s+/g));
});

console.log(mark.chain(4).join(' '));
// might print something like "be quick brown fox" or "the quick now is"
```

## Docs

### `var mark = new Markov(options)`

// TODO. State what the module does.

## Installation

`npm install markoff`

## Tests

`npm test`

## Contributors

 - Joshua T Corbin

## MIT Licenced

  [build-png]: https://secure.travis-ci.org/jcorbin/markoff.png
  [build]: https://travis-ci.org/jcorbin/markoff
  [cover-png]: https://coveralls.io/repos/jcorbin/markoff/badge.png
  [cover]: https://coveralls.io/r/jcorbin/markoff
  [dep-png]: https://david-dm.org/jcorbin/markoff.png
  [dep]: https://david-dm.org/jcorbin/markoff
  [test-png]: https://ci.testling.com/jcorbin/markoff.png
  [tes]: https://ci.testling.com/jcorbin/markoff
  [npm-png]: https://nodei.co/npm/markoff.png?stars&downloads
  [npm]: https://nodei.co/npm/markoff

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