This is a Todos example app built on the principles described in the Meteor Guide. This branch (coffeescript) is a port of the app into CoffeeScript. It uses the latest features of CoffeeScript, including native support for import and export and classes.
meteor npm install
meteorWithin the imports folder, the original ES2015 version of each file (as of commit db48dfd) is alongside its CoffeeScript port. Since imports is a special folder in Meteor, these .js files are never used, since no code ever imports them. (The former client/main.js and server/main.js are one-liners that are included as comments in client/main.coffee and server/main.coffee.) Tests aren’t run as part of the core app and haven’t been ported.
For a single file that showcases how to accomplish writing most of the new ES2015 features in CoffeeScript, compare the original todos.js with the new todos.coffee.