Skip to content

shyftframework/angular-backbase-generator

 
 

Repository files navigation

BackBase Angular Generator

Pre-Requisites


Clone

https://github.com/jvrunion/angular-backbase-generator.git
	$ cd angular-backbase-generator
	$ npm install
	$ bower install

Testing

	$ grunt test

The generator comes pre-installed with Karma is integrated with Grunt for testing

Server

	$ grunt serve

Build

	$ grunt build

About this generator

Backbase

Customer Experience Platform

  • Widget-based with a modern web oriented architecture.
  • Including Launchpad: Ready to go blueprints & apps.
  • Integrates with any system or application.

More Info

Angular

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.

Angular Presets:

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

More Info

About

Backbase / Angular Generator

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • ApacheConf 44.0%
  • JavaScript 36.1%
  • HTML 15.5%
  • CSS 4.4%