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

forgetsy-js

v0.10.6

Published

Forgetsy.js is a scalable trending library designed to track temporal trends in non-stationary categorical distributions. NodeJS fork of https://github.com/cavvia/forgetsy.

Downloads

68

Readme

Table of Contents generated with DocToc

forgetsy-js

NodeJS Trending library

Status

Build Status Coverage Status

NPM Stats

NPM

NOTICE

This library was converted to use Promise/A+. Please see usage instructions below.

Description

Node.JS fork Forgetsy, a trending library designed to track temporal trends in non-stationary categorical distributions. Please fork or file an bug if you discover an issue. The project use Redis as the backend.

Please fork and make it better.

Installation

npm install forgetsy-js

Usage

Initializing

// setup redis
var redis = require('redis');
var client = redis.createClient();

// setup forgetsy-js & pass redis client
var delta = require('forgetsy-js');
delta.setRedisClient(client);

Create a distribution

// name of distribution
var name = 'facebook-shares';

// name of bin
var bin = 'my-content-id';

var promise = delta.create({
  name: name
  , time: time
});

promise.then(function(dist) {
  // the distribution was create..
});

promise.catch(function(e) {
  // there was an error creating distribution
});

Increment a bin

var promise = delta.get(name);

promise.then(function(dist) {
  var promise = dist.incr({
    bin: bin
    ,by: 1
  });

  promise.then(function() {
    // bin was incremented
  });

  promise.catch(function(e) {
    // bin was not incremented
  })
});

Fetch distribution (all)

var promise = delta.get(name);

promise.then(function(dist) {
  var promise = dist.fetch();

  promise.then(function(trends) {
    console.log(trends);
  })

  promise.catch(function(e) {
    // error fetching distribution
  })
})

Fetch distribution (one)

var promise = delta.get(name);

promise.then(function(dist) {
  // specify the bin to fetch
  var promise = dist.fetch({bin: bin});

  promise.then(function(trends) {
    console.log(trends);
  })

  promise.catch(function(e) {
    // error fetching distribution
  })
})

Fetch distribution (n)

var promise = delta.get(name);

promise.then(function(dist) {
  // specify the bin to fetch
  var promise = dist.fetch({limit: 10});

  promise.then(function(trends) {
    console.log(trends);
  })

  promise.catch(function(e) {
    // error fetching distribution
  })
})

Example output

[
 {'item': 'one': 'score': 0.999999999997154}
,{'item': 'two': 'score': 0.9999999999939523}
]

Complete Example

var name = 'facebook-shares';
var bin = 'my-content-id2';

// create distribution
delta.create({
  name: name,
  time: getDays(14)
})
.then(function(dist) {
  
  // increment a bin
  dist.incr({
    bin: bin,
    by: 1
  })
  .then(function() {

    // fetch trends
    dist.fetch()
    .then(function(trends) {
      console.log(trends);
    })
    .catch(function(e) {
      // error fetching trends
    });
  })
  .catch(function(e) {
    // bin was not incremented
  });
})
.catch(function(e) {
  // there was an error creating distribution
});

Basic Demo

This is a very basic working API demo.

Create a distribution

Categories are the distributions to create

  • classical
  • modern
  • street

Type is the type of distributions we're creating. In this case, the categories are related to "art." You can classify the distributions as you see fit. For example, "type" could easily refer to "music." (Probably sans "street" [:-])

http://104.131.230.35/create?categories=classical,modern,street&type=art

Increment a bin

Here we will trend a bin, "banksy & Barbara Kruger" the famous street artist.

http://104.131.230.35/incr?categories=street&type=art&bin=banksy

http://104.131.230.35/incr?categories=street&type=art&bin=Barbara Kruger

Fetch distribution

Here we will fetch what's trending in category "street" of type "art"

http://104.131.230.35/fetch?categories=street&type=art&filters=geoip

Fetch all distributions

Here we will fetch what's trending in all of the categories of type "art"

http://104.131.230.35/fetch?categories=classical,modern,street&type=art&filters=geoip

Fetch all distributions with geo-location trends

Here we will fetch what's trending in all of the categories of type "art" and geo-location trends. Behind the scenes, the API is detecting your location and trending based on geo-location as well (assuming your location was detected!)

http://104.131.230.35/fetch?categories=classical,modern,street&type=art

Test

npm test