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
We've learned a lot while using and supporting AngularJS on the [mailing list](https://groups.google.com/group/angular) and would like to share our experience.
15
+
We've learned a lot while using and supporting AngularJS on the [mailing list](https://groups.google.com/group/angular) and would like to share our experience.
16
16
17
17
## Stack
18
18
@@ -82,7 +82,7 @@ Our client application is a straight HTML/Javascript application but our develop
82
82
```
83
83
84
84
(This will install the dependencies declared in the client/package.json file)
The app made up of a number of javascript, css and html files that need to be merged into a final distribution for running. We use the Grunt build tool to do this.
124
-
* Build client application:
125
-
124
+
* Build client application:
125
+
126
126
```
127
127
cd client
128
128
grunt build
@@ -153,7 +153,7 @@ testing against browsers that you need to support.
153
153
### Folders structure
154
154
At the top level, the repository is split into a client folder and a server folder. The client folder contains all the client-side AngularJS application. The server folder contains a very basic Express based webserver that delivers and supports the application.
155
155
Within the client folder you have the following structure:
156
-
* `build` contains build tasks for Grunt
156
+
* `node_modules` contains build tasks for Grunt along with other, user-installed, Node packages
157
157
* `dist` contains build results
158
158
* `src` contains application's sources
159
159
* `test` contains test sources, configuration and dependencies
0 commit comments