Skip to content Skip to sidebar Skip to footer

Html5, Angularjs With Closure Compiler And/or Closure Library

I'm considering html5, angularJS for data binding and also google closure compiler and the closure library for interactive web applications. Do those work nicely together? Unfortun

Solution 1:

Closure Compiler

You can definitely compile your code (Angular itself is compiled with Closure compiler), although you can only use simple optimizations at this point.

In general we want Angular to play well together with the compiler.

Closure library

There is a bunch of project inside Google, using the library together with Angular.

They use goog.provide() and goog.require() for dependencies. Also using the utilities like goog.isString() or goog.inherits() is absolutely straightforward.

Using closure UI components might require some extra work (although, again, there are projects using it).

Solution 2:

Hope this help

Change code

functionMyCtrl($scope) {/* code */}

To

var MyCtrl = ['$scope', function($scope) {/* code */}]

Post a Comment for "Html5, Angularjs With Closure Compiler And/or Closure Library"