Nuacht

This report documents the step-by-step development of a calculator program using Test-Driven Development (TDD), written in JavaScript (Node.js). The version supports four arithmetic operations on ...
This article is a crash course in writing maintainable JavaScript. We'll add features to a running example by iteratively following a simple principle: write a unit test, make it pass. Each test ...
GitHub is where people build software. More than 100 million people use GitHub to discover, fork, and contribute to over 420 million projects.
This article by Dennis Byrne is a crash course in writing maintainable JavaScript. Dennis uses stubs, mock objects and a little bit of dependency injection. He also uses JsUnit to run unit tests ...
Let's wrap up this series on TDD for ASP.NET MVC and talk about the view layer via JavaScript.