Using Linked Node Modules in Travis CI

I’ve been working on two Node.js projects in tandem. Because one of them is a direct dependency of the other, I use `npm link` to directly link the dependency project to the main project. I wanted to achieve this with Travis CI and Node.js.… Read more »

High Performance Loops in Node.js

In the process of working on Aurora, I found myself in need of an accurate game loop which wouldn't slowly get more and more off over time, while still remaining predictable and deterministic.… Read more »