You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* development:
Dynamically change the routes.js when a new controller is generated
Added services/directives scaffolding feature.
Create arcconfig file.
Bump version to v0.2.0-dev
Copy file name to clipboardExpand all lines: README.md
+10-2Lines changed: 10 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ The Angular Require Fullstack generator comes to speed up the scaffolding of pro
27
27
Well, unless you like spending time creating the basic structure for each project you start, setting up its configuration and the tools/plugins/frameworks you're going to use, you will agree that those tasks are terrible repetitive, tough, time-consuming and on top of that, they have a ROI tending to zero. Using a generator will simplify most of these tasks, and will get them done in seconds.
28
28
29
29
####Why to use this generator?
30
-
We believe that both AngularJS and RequireJS are extremely usefull when building up web applications, and we wanted to use both of them on all of the web projects we develop, but we couldn't find a generator that did these while providing support to file revving and i18n, which we think must be present in any decent web application. If this isn't enough for you to consider this generator, you might reconsider it if we tell you that it will provide you dependency lazy loading.
30
+
We believe that both AngularJS and RequireJS are extremely useful when building up web applications, and we wanted to use both of them on all of the web projects we develop, but we couldn't find a generator that did these while providing support to file revving and i18n, which we think must be present in any decent web application. If this isn't enough for you to consider this generator, you might reconsider it if we tell you that it will provide you dependency lazy loading.
31
31
32
32
####Who built this generator?
33
33
This generator was built by Monits. If you'd like to know more about Monits, go to [Monits](http://www.monits.com) or check out our [Blog](https://medium.com/monits-blog)
@@ -47,7 +47,15 @@ Finally, initiate the generator:
47
47
```bash
48
48
yo angular-require-fullstack
49
49
```
50
-
It will guide you from there
50
+
It will guide you from there.
51
+
52
+
Also, you can create your own services/directives/controllers using our templates by doing:
53
+
54
+
```bash
55
+
yo angular-require-fullstack:whatiwant
56
+
```
57
+
58
+
Replace `whatiwant` with the word `controller`, `service` or `directive` as you need. The rest is straightforward.
0 commit comments