Skip to content

A simple ES6 class for generating text using Markov chains. This should result in text that is similar in content and context to the supplied text sample, but (ideally) unique in concept.

Notifications You must be signed in to change notification settings

maximumdata/markov-generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

markov-generator

npm version Build Status JavaScript Style Guide Known Vulnerabilities

A simple ES6 class for generating text using Markov chains. This should result in text that is similar in content and context to the supplied text sample, but (ideally) unique in concept.

Quickstart

const MarkovGen = require('markov-generator');

let markov = new MarkovGen({
  input: ['array of sentences', 'to base the chains on', 'should go here'],
  minLength: 10
});

let sentence = markov.makeChain();
console.log(sentence);

Contributing

Fork the repo, clone your fork, commit changes to the master branch, then open a pull request. Node v6+ is required.

About

A simple ES6 class for generating text using Markov chains. This should result in text that is similar in content and context to the supplied text sample, but (ideally) unique in concept.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •