active-user

0.0.1 • Public • Published

Active User

The active-user modules allows you to quickly track daily, weekly, and monthly active users in Redis.

Installing and Getting Started

You can install the active-user module via npm. You will also need to have a Redis server instance running.

npm install active-user

Once active-user is installed we need a client:

var activeUser = require('active-user');
 
var activity = activeUser.createClient(REDIS_PORT, REDIS_HOST, REDIS_OPTIONS);

Tracking

activity.track(id, [action]);

Tracking is a very simple operation:

activity.track(10, 'commented');
activity.track(1);

Where the id is the id of the user you want to track and the action is the action they performed.

activity.untrack(id, [action]);

You may also undo a tracked action for a user with untrack:

activity.untrack(10, 'commented');
activity.untrack(1);

Reporting

You can fetch the daily, weekly, and monthly active users easily:

activity.daily([action], [date], callback);

// Fetching the number of users who commented on Nov 21, 2013
activity.daily('commented', '2013-11-21', function (err, num) {
  console.log(num);
});
 
// Fetching the number of daily active users for the current day
activity.daily(function (err, num) {
  console.log(num);
});

activity.weekly([action], [date], callback);

// Fetching the number of users who commented the week containing Nov 21, 2013
activity.weekly('commented', '2013-11-21', function (err, num) {
  console.log(num);
});
 
// Fetching the number of daily active users for the current week
activity.weekly(function (err, num) {
  console.log(num);
});

activity.monthly([action], [date], callback);

// Fetching the number of users who commented the month of Nov 2013
activity.monthly('commented', '2013-11', function (err, num) {
  console.log(num);
});
 
// Fetching the number of daily active users for the current month
activity.monthly(function (err, num) {
  console.log(num);
});

Readme

Keywords

none

Package Sidebar

Install

npm i active-user

Weekly Downloads

1

Version

0.0.1

License

MIT

Last publish

Collaborators

  • iancmyers