24 Jan
2012

Introducing TrackMyRun

I’ve been working on a small pet project for a couple of weeks now, which I named TrackMyRun. I’m quite fanatic when it comes to running, doing about 130 runs a year. Currently I’m keeping track of all these runs in a simple spreadsheet, but off course, that’s certainly not “the geek way”. Hence the […]

Read More
20 Jan
2012

Taking Toddler Steps with Node.js – Express Routing

In the previous post I provided a short introduction to Express, a web development framework built on top of connect that is heavily inspired by Sinatra. For this post we?ll dive into a couple of styles for dealing with routes in Express. Express simply uses HTTP verbs for its routing API. // Index app.get(‘/runs’, function(request, […]

Read More
23 Dec
2011

Taking Toddler Steps with Node.js – Express

< The list of previous installments can be found here. > There are several frameworks out there for building web applications with Node.js, one being more successful than the other. Express is probably the most popular and well known web development framework for Node.js. It?s heavily inspired by Sinatra and built on top of connect, […]

Read More
18 Oct
2011

Taking Baby Steps with Node.js – BDD Style Unit Tests with Jasmine and CoffeeScript

< The list of previous installments can be found here. > In a previous blog post, I already wrote about BDD style unit tests for testing Node.js modules using Jasmine. I really like the conciseness, simplicity and readability of specification style unit tests using Jasmine. But when we pour CoffeeScript into the mix, then the […]

Read More