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
Head over to the [canary branch](https://github.com/angular-fullstack/generator-angular-fullstack/tree/canary) for the generator 5.0.0 Beta. Some things like subgenerators and unit tests aren't up to spec yet, but we'd love feedback on everything else!
24
-
25
-
`$ npm install -g yo gulp-cli generator-angular-fullstack@beta`
Install `yo`, `gulp-cli`, and `generator-angular-fullstack@beta`:
27
+
Install `yo`, `gulp-cli`, and `generator-angular-fullstack`:
30
28
```
31
-
npm install -g yo gulp-cli generator-angular-fullstack@beta
29
+
npm install -g yo gulp-cli generator-angular-fullstack
32
30
```
33
31
__Please note__: If you run into trouble compiling native add-ons during the installation, follow [`node-gyp`](https://github.com/nodejs/node-gyp)'s short guide on [required compilation tools](https://github.com/nodejs/node-gyp#installation).
34
32
33
+
Then, to run your app (make sure the MongoDB daemon is running if you selected Mongo), run the following to start your server:
34
+
```sh
35
+
npm run start:server
36
+
```
37
+
and the following to start the Webpack dev server for the front-end:
38
+
```sh
39
+
npm run start:client
40
+
```
41
+
42
+
The Webpack server will tell you which port to access the app at (usually http://localhost:8080/).
0 commit comments