Why I Built Page-Logger... and How It Made Me Money
March 9, 2015
I developed a small application called page-logger for purely selfish and lazy reasons. However, it turned out to be not only a learning experience but also a source of income. In this post, I’ll walk you through the motivations behind its creation, the development process, and how it unexpectedly generated revenue.
Why I Built Page-Logger
After years of using Blogger, I switched to Jekyll hosted on GitHub. While Jekyll served me well, I missed a lightweight Google Analytics feature embedded in Blogger. This feature allowed me to track the reception of individual posts, which I found invaluable. Determined to replicate this functionality, I decided to build my own solution.
How I Built Page-Logger and What I Learned
I opted for Node.js, leveraging the Koa framework. The application essentially comprised two components:
- An HTTP-accessible API for posting page views.
- A simple site for viewing the collected data. ...