npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

markov-respond

v7.0.0

Published

Silly markov chatbot module

Downloads

24

Readme

markov

Generate markov chains for chatbots and freestyle rap contests.

examples

qwantz

  var util = require('util');
  var fs = require('fs');
  
  var Markov = require('markov');
  var m = new Markov();
  
  var s = fs.readSync(__dirname + '/qwantz.txt');
  m.train(s);

  var stdin = process.openStdin();
  util.print('> ');
  
  stdin.on('data', function (line) {
    var res = m.respond(line.toString()).join(' ');
    console.log(res);
    util.print('> ');
  });
  $ node example/qwantz.js 
  > Hello friend.
  Oh, that hurts me. How could fall apart, not unlike this tiny house. remains a danger when you? As I see him (quite often, Yes, As Thank I you? take have on! forgotten male, That oppression is is a A friend
  > That is troubling news!
  I've I had must to guard do against with such the a irony part of of their their fundamental fundamental injustices.
  > Justice eh? SOMEBODY LIGHT UP THE BATSIGNAL
  crazy I Utahraptor feel slipped alot in better! your about problems the put future! behind full You? of go My down perspective. The

methods

new Markov(minimumWords, caseSensitive, stripPunctuation)

Create a new markov object. Optionally set minimumWords (default 1), caseSensitive (default false), stripPunctuation (default false).

.train(text)

Train the markov object with a string text, ignoring text with fewer than minimumWords words.

.search(text)

Search for and return some key found in the text body text.

Return undefined if no matches were found.

.pickWord(nodes, words)

Choose a word at random from nodes, optionally favoring words in words.

.next(key)

Find a key likely to follow after key.

Returns a hash with keys key, the canonical next key and word, a raw form of key as it appeared in the training text.

.prev(key)

Find a key likely to come before key.

Returns a hash with keys key, the canonical next key and word, a raw form of key as it appeared in the training text.

.fill(key, limit)

Generate a markov chain in both directions starting at key. Return an array of the raw word forms along the way including the raw word form of the supplied key.

Stop when the traversal hits a terminal entry or when limit words have been generated if limit is specified.

.respond(text, limit)

Search for a starting key in text and then call .fill(key, limit) on it.

tests

npm test