├── .gitignore ├── LICENSE ├── README.md ├── cli ├── cli.js └── templates │ ├── component │ ├── directive.js.template │ ├── style.scss.template │ └── template.html.template │ └── page │ ├── controller.js.template │ ├── style.scss.template │ └── template.html.template ├── core ├── generate.js ├── initializers │ └── angular_spa_initializer.js └── module.js ├── index.js ├── package.json └── src ├── angular ├── app │ ├── components │ │ └── test-component │ │ │ ├── directive.js │ │ │ ├── style.scss │ │ │ └── template.html │ ├── factories │ │ └── api.js │ ├── pages │ │ └── root │ │ │ ├── controller.js │ │ │ ├── index │ │ │ ├── controller.js │ │ │ ├── style.scss │ │ │ └── template.html │ │ │ ├── style.scss │ │ │ └── template.html │ └── style │ │ ├── base.scss │ │ └── import.scss ├── application.js ├── index.html ├── router.js └── vendor │ ├── script │ └── sample.js │ └── style │ └── sample.css └── app ├── controllers └── index_controller.js └── router.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/README.md -------------------------------------------------------------------------------- /cli/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/cli/cli.js -------------------------------------------------------------------------------- /cli/templates/component/directive.js.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/cli/templates/component/directive.js.template -------------------------------------------------------------------------------- /cli/templates/component/style.scss.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/cli/templates/component/style.scss.template -------------------------------------------------------------------------------- /cli/templates/component/template.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/cli/templates/component/template.html.template -------------------------------------------------------------------------------- /cli/templates/page/controller.js.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/cli/templates/page/controller.js.template -------------------------------------------------------------------------------- /cli/templates/page/style.scss.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/cli/templates/page/style.scss.template -------------------------------------------------------------------------------- /cli/templates/page/template.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/cli/templates/page/template.html.template -------------------------------------------------------------------------------- /core/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/core/generate.js -------------------------------------------------------------------------------- /core/initializers/angular_spa_initializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/core/initializers/angular_spa_initializer.js -------------------------------------------------------------------------------- /core/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/core/module.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/package.json -------------------------------------------------------------------------------- /src/angular/app/components/test-component/directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/src/angular/app/components/test-component/directive.js -------------------------------------------------------------------------------- /src/angular/app/components/test-component/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/src/angular/app/components/test-component/style.scss -------------------------------------------------------------------------------- /src/angular/app/components/test-component/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/src/angular/app/components/test-component/template.html -------------------------------------------------------------------------------- /src/angular/app/factories/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/src/angular/app/factories/api.js -------------------------------------------------------------------------------- /src/angular/app/pages/root/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/src/angular/app/pages/root/controller.js -------------------------------------------------------------------------------- /src/angular/app/pages/root/index/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/src/angular/app/pages/root/index/controller.js -------------------------------------------------------------------------------- /src/angular/app/pages/root/index/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/src/angular/app/pages/root/index/style.scss -------------------------------------------------------------------------------- /src/angular/app/pages/root/index/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/src/angular/app/pages/root/index/template.html -------------------------------------------------------------------------------- /src/angular/app/pages/root/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/src/angular/app/pages/root/style.scss -------------------------------------------------------------------------------- /src/angular/app/pages/root/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/src/angular/app/pages/root/template.html -------------------------------------------------------------------------------- /src/angular/app/style/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/src/angular/app/style/base.scss -------------------------------------------------------------------------------- /src/angular/app/style/import.scss: -------------------------------------------------------------------------------- 1 | @import 'base'; 2 | -------------------------------------------------------------------------------- /src/angular/application.js: -------------------------------------------------------------------------------- 1 | var app = angular.module('App', ['ui.router']); 2 | -------------------------------------------------------------------------------- /src/angular/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/src/angular/index.html -------------------------------------------------------------------------------- /src/angular/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/src/angular/router.js -------------------------------------------------------------------------------- /src/angular/vendor/script/sample.js: -------------------------------------------------------------------------------- 1 | console.log('This is a sample vendor script'); 2 | -------------------------------------------------------------------------------- /src/angular/vendor/style/sample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/src/angular/vendor/style/sample.css -------------------------------------------------------------------------------- /src/app/controllers/index_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/src/app/controllers/index_controller.js -------------------------------------------------------------------------------- /src/app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithwhor/nodal-angular/HEAD/src/app/router.js --------------------------------------------------------------------------------