generator-ng-super
Credit where it is due:
Alot of work has been shamelessly pulled in through John Papa's course of Angular JS Patterns: Clean Code and its corresponding Angular JS Style Guide.
Table of Contents:
Development Environment Setup
Pre-requisites:
To install yeoman:
$ npm install yo -g
To install Bower
$ npm install bower -g
To install Compass**
$ gem install compass
** Make sure you have Ruby installed on your machine
** https://www.ruby-lang.org/en/documentation/installation/
Setup ng-Super webapp
To install generator-ng-super:
$ npm install -g generator-ng-super
Finally, initiate the generator:
$ mkdir superApp
$ cd superApp
$ yo ng-super
Install project dependencies:
$ cd superApp
$ npm install
$ bower install
Run $ grunt server
to run the application.
File and folder structure
├── app
│ ├── fonts
│ │ └── Kelvetica Nobis.otf
│ ├── images
│ │ └── welcome
│ │ └── super-logo.jpg
│ ├── index.html
│ ├── src
│ │ ├── app.module.js
│ │ ├── common
│ │ │ └── common.module.js
│ │ ├── core
│ │ │ ├── core.module.js
│ │ │ ├── restangular.config.js
│ │ │ ├── httpStatus.constant.js
│ │ │ └── router.config.js
│ │ └── welcome
│ │ ├── welcome.controller.js
│ │ ├── welcome.html
│ │ └── welcome.module.js
│ └── styles
│ ├── css
│ │ └── main.css
│ ├── main.scss
│ └── partials
│ ├── _skin.scss
│ └── _welcome.scss
├── bower.json
├── configLoader.js
├── gruntfile.js
├── package.json
├── tasks
│ ├── bump.js
│ ├── clean.js
│ ├── compass.js
│ ├── concurrent.js
│ ├── connect.js
│ ├── copy.js
│ ├── html2js.js
│ ├── karma.js
│ ├── ngAnnotate.js
│ ├── replace.js
│ ├── usemin.js
│ ├── useminPrepare.js
│ ├── watch.js
│ └── wiredep.js
└── tests
└── welcome
└── welcome.controller.js
Sub-Generators
Controller
Generates an Angular Controller for the provided Module
yo ng-super:controller dashboard.user
Produces: app/src/dashboard/user.controller.js
:
(function(){
'use strict';
angular
.module('app.dashboard')
.controller('User', User);
function User(){
var vm = this;
vm.testFunction = testFunction;
function testFunction(num){
console.info('This is a test function');
}
}
}());
Directive
Generates an Angular Directive for the provided Module
yo ng-super:directive common.kuSubmit
Produces: app/src/common/kuSubmit.directive.js
:
(function(){
'use strict';
angular
.module('app.common')
.directive('kuSubmit', kuSubmit);
function kuSubmit(){
return {
link: link,
restrict: 'E',
template: '<div></div>',
scope: {
test: '='
}
};
function link(scope, elem, attrs){
console.info('This is a link function of the directive');
}
}
}());
Factory
Generates an Angular Factory for the provided Module
yo ng-super:factory common.calendar
Produces: app/src/common/calendar.factory.js
:
(function(){
'use strict';
angular
.module('app.common')
.factory('calendar', calendar);
function calendar(){
return {
testFunction: testFunction
};
function testFunction(id){
console.info('This is a test function');
}
}
}());
Constant
Generates an Angular Constant for the provided Module
yo ng-super:constant common.errorMessages
Produces: app/src/common/errorMessages.constant.js
:
(function(){
'use strict';
var errorMessages = {
someConstant: 'hasSomeValue'
};
angular
.module('app.common')
.constant('errorMessages', errorMessages);
}());
Value
Generates an Angular Value for the provided Module
yo ng-super:value core.appId
Produces: app/src/core/appId.value.js
:
(function(){
'use strict';
var appId = {
someValue: 'obviouslyHasSomeValue'
};
angular
.module('app.core')
.value('appId', appId);
}());
Filter
Generates an Angular Filter for the provided Module
yo ng-super:filter common.currency
Produces: app/src/common/currency.filter.js
:
(function(){
'use strict';
angular
.module('app.common')
.filter('currency', currency);
function currency(){
return function (input){
return 'currency filter: ' + input;
};
}
}());
Feature
Generates an Angular Module
yo ng-super:feature talks
Produces: app/src/talks/talks.module.js
:
(function(){
'use strict';
angular
.module('app.talks', [])
.config(configuration);
function configuration($stateProvider){
}
}());
View
Generates an HTML view
yo ng-super:view dashboard.performance
Produces: app/src/dashboard/performance.html
:
<div> this a a sample view for dashboard.performance </div>
Styling and Linting
Generated app would contain jshint and jscs configurations. Make sure your editor is configured to take advantage of both styling and linting.
Grunt Tasks
$ grunt server
Pops up a development environment with HTML, CSS and JS Livereload
$ grunt test
Runs all unit tests on Karma
$ grunt build
Creates a dist
containing a distribute-able Angular App
$ grunt bump
Bump application version and goodies, details at grunt-bump
$ grunt ngdocs
Generates documentation from the ngdoc declared in the Angular source code
Third Parties
Following packages are pre-configured:
FAQ
Why generator-ng-super?
generator-ng-super is a heavily opinionated project that has been initiated to contain mix of best practices learned through courses and expirience.
It also contains a mix of packages which are best in the business pre-configured into the application structure like Angular UI's Twitter Bootstrap Directives, Angular UI's UI-Router (replacing ngRoute) and Martin Gonto's Restangular (replacing $http and $resource).
The main purpose of generator-ng-super was to encapsulate the best from the industry experts and make it ready for use.
Why the chosen directory structure and code pattern?
The directory structure has been chosen to ease readability and search for code while keeping the directory structure flat. It corresponds to John Papa's LIFT principle of code organization.
- L - Locate your code easily
- I - Identify code at a glance
- F - Flat structure as long as we can
- T - Try to stay DRY
What am I getting out of the box?
generator-ng-super will provide a complete running Angular JS application with all the goodies like sample code, tests and packages setup in a few mins. Each sub-generator for the components provides sample code enabling the developer to get straight down to business of writing code, all the other setup configuration and code is taken care of by the generator.
Why Angular UI Router instead of ngRoute?
UI-Router contains all the missing features from the ngRouter. Visit Angular UI Router for further insight.
Why Restangular instead of $http or $resource?
Restangular provides tons of goodies through which you can setup your HTTP requests in a very intuitive way. Visit Restangular for further insight.
License
MIT