https://github.com/jvrunion/angular-backbase-generator.git
$ cd angular-backbase-generator
$ npm install
$ bower install
$ grunt test
$ grunt serve
$ grunt build
Customer Experience Platform
- Widget-based with a modern web oriented architecture.
- Including Launchpad: Ready to go blueprints & apps.
- Integrates with any system or application.
Why AngularJS?
HTML is great for declaring static documents, but it falters when we try to use it for declaring dynamic views in web-applications. AngularJS lets you extend HTML vocabulary for your application. The resulting environment is extraordinarily expressive, readable, and quick to develop.
Controller
Example:
angular.module('myMod').controller('UserCtrl', function ($scope) {
// ...
});
Directive
Example:
angular.module('myMod').directive('myDirective', function () {
return {
template: '<div></div>',
restrict: 'E',
link: function postLink(scope, element, attrs) {
element.text('this is the myDirective directive');
}
};
});
Services
Example:
angular.module('myMod').service('myService', function () {
// ...
});
Resources
Example:
angular.module('backbaseApp.pipeApi', ['ngResource'])
// ...
});
Bower Components
The following packages are always installed by the generator:
- angular
- angular-mocks
- angular-scenario
- angular-animate
- angular-aria
- angular-cookies
- angular-messages
- angular-resource
- angular-sanitize