1.0.0 • Published 4 years ago

markov-catena v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
4 years ago

markov-catena

String generator based on Markov process

Installation

npm install markov-catena

Simple example

import mс from 'markov-catena'
// or const mс = require('markov-catena')

const generator = new mс.StringGenerator(['hello, world', 'world is mine'])

for (let _ in [...Array(5)]) console.log(generator.generateString())
// will generate something like:
//
// 'hello, world'
// 'world'
// 'hello, world is mine'
// 'world'
// 'hello, world' 

More examples can be found here

Features

  • Easy to use
  • Result validating (also built-in validators TODO).
  • Result formatting (also built-in formatters). Example