Yeoman Generator for maintainable AngularJS projects. Forked from cgross/generator-cg-angular
This generator follows the Angular Best Practices (Work in progress).
Prerequisites: Node, Grunt, Yeoman, and Bower.
Once Node is installed, do:
npm install -g grunt-cli yo bower
Create a project:
First, clone this repository (this step will go away as soon as we are on bower)
git clone git@github.com:Intelliware/generator-jlb-angular.git
cd generator-jlb-angular
npm link
You'll also need a server. For this, you can use our Spring Boot implementation.
# In a new terminal
git clone git@github.com:Intelliware/sample-app-server.git
cd sample-app-server/sample-app-api
mvn clean install spring-boot:run
Then create your awesome app:
mkdir MyNewAwesomeApp
cd MyNewAwesomeApp
yo jlb-angular
And finally, grunt serve
and open http://localhost:9001/app/#/page/company/list
Now login using 'a' and 'password'
grunt serve #This will run a development server with watch & livereload enabled.
grunt test #Run local unit tests.
grunt build #Places a fully optimized (minified, concatenated, and more) in /dist
yo jlb-angular:module
yo jlb-angular:service
- blank: generates a simple service with no content. Ideal when starting a new business service.
- $http: generate a rest service that encapsulate all the calls for a specific operation.
- $resource: same as $http, but uses the $resource service instead of the $http
app/................................... app folder
i18n/................................ locales folder
locale-en.json.....................
locale-fr.json.....................
less/................................ your styles go here
app.less...........................
nav.less...........................
css/................................. generated CSS folder
app.css............................
nav.css............................
modules/............................. modules folder
moduleA/........................... example of a module
_tests/.......................... unit tests folder
moduleA-rest.spec.js...........
moduleA-controller.spec.js.....
partial/......................... partials folder
partial1.html..................
moduleA-config.js................ moduleA config (init, routes, ...)
moduleA-controller.spec.js....... moduleA controller
moduleA-rest-service.js.......... moduleA rest rest
app.js............................... angular app initialization
index.html........................... main HTML file
TODO
Copyright 2015 Jean-Louis Bourgeois
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.