0.0.1 • Published 10 years ago

psychonaut v0.0.1

Weekly downloads
4
License
BSD
Repository
github
Last release
10 years ago

Psychonaut

WIP

An experiment to test bloom filtering on auto-tagged words.

Use case

The conceptual real world use case is storing input by a user while they chat as a way to determine what relevant advertisements/content should return.

Example usage

var Psychonaut = require('psychonaut');

var ads = {
  'hike': ['REI', 'MEC'],
  'music': ['soundcloud', 'youtube']
};

var p = new Psychonaut({
  content: ads
});

var s = 'I am hiking today at noon';
p.tag(s);
p.check(s); // returns ads.hike
0.0.1

10 years ago

0.0.0

10 years ago