Published: 2012-04-23
Updated: 2012-04-29
Updated: 2012-11-05
I added a TypeScript port and login authenication — changes that made the original post out of date.
Published: 2012-04-23
Updated: 2012-04-29
Updated: 2012-11-05
I added a TypeScript port and login authenication — changes that made the original post out of date.
Updated: 2012-08-19
Updated: 2012-06-18
Updated: 2012-04-06
Published: 2011-11-01
To implement bash(1) tab completion for Cakefile task names all you need to do is add this completion function and command to your ~/.bashrc file:
Published: 2011-10-25
This blog entry describes how to write functional tests for CoffeeScript web apps using Selenium. By way of example I’ll describe how I added Selenium tests to the Routeless Backbone Contacts tutorial app and automated it’s execution with a Cakefile.
Published: 2011-10-20
Updated: 2012-04-24
Updated: 2012-06-19
You can configure Vim to automatically compile CoffeeScript files when you save them from within Vim, it’s easy, just add an autocmd to run the CoffeeScript compiler to your ~/.vimrc file:
Published: 2011-10-16
The Backbone.js Model class provides get and set methods to read and write Model attributes which is not a concise or natural as object property access. But it’s not difficult to add a class method to generate Model getter/setter properties so that you can do this in CoffeeScript:
person.name = 'Joe Bloggs' ph = person.phone
instead of this:
person.set {name: 'Joe Bloggs'}
ph = person.get 'name'
Published: 2011-10-03
Updated: 2011-10-25
This post describes a revamped version 2.0 of my original Routeless Backbone Contacts application. The material covered here builds on the original post.
Published: 2011-09-24
Updated: 2011-10-03
You don’t need a URL router to write client-side applications.
Routeless Backbone.js Contacts is a totally client-side CRUD tutorial application written using CoffeeScript, Stylus, Backbone.js and jQuery which are a perfect match for writing concise, readable well structured web applications.
|
Note |
This release described in this post is at the 1.0 tag. |
|
Note |
A second version of this tutorial application [has been posted], it builds on the material covered in this post. |
Published: 2011-07-08
Updated: 2011-10-27: published the app to github and the npm registry.
This post details my learning experience porting a command-line application I previously wrote in Python to CoffeeScript.