My last post demonstrated a micro-analytics app using Redis and Ruby/Sinatra. Here is the equivalent using Node/Express/Node Redis. var express = require(‘express’); var app = express(); var db = require(‘redis-url’).connect(process.env.REDISTOGO_URL); /** * Log navigation from one location to the next * @param {string} from: one location * @param {string} to: the next location * @returns…… Continue reading “Next article” micro-analytics: Redis and Node