With the deprecation of the React tools, the availability of ECMAScript 6 features (natively or through transpilers), and the emergence of Babel as both the React tools replacement and the ECMAScript 6 transpiler of choice, I thought I’d share a simple reference application built with this new stack. In this article, I’ll share three versions […]
Archive | browserify
ECMAScript 6 Tutorial with Babel and Browserify
July 27, 2015 in Babel, browserify, ECMAScript 6, JavaScript
In this tutorial, you create a Mortgage Calculator with amortization table using many of the new ECMAScript 6 features. You use Babel to transpile the ECMAScript 6 application and use it in current browsers. You also use Browserify to provide the module implementation. Start the tutorial here

Browserify Sample Application: with Backbone, jQuery, Handlebars, and Cordova
January 10, 2014 in Backbone.js, browserify, RequireJS
Browserify is a tool that lets you bundle node.js modules and consume them in the browser. In other words, it allows you to write browser-based applications using node.js-style requires. Quick Tour Install browserify or Write a module Use the module Create the bundle Add bundle.js to your index.html file and run the application. More details: […]