Skip to content
This repository was archived by the owner on Apr 8, 2020. It is now read-only.

Commit 7052fa0

Browse files
Rephrased docs to clarify which are the parts you type into the command line
1 parent 4665d1f commit 7052fa0

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -24,22 +24,22 @@ Everything here is cross-platform, and works with .NET Core 1.0 RC2 or later on
2424

2525
## Creating new applications
2626

27-
If you want to build a brand-new ASP.NET Core app that uses Angular 2 / React / Knockout on the client, consider starting with the `aspnetcore-spa` generator. This lets you choose your client-side framework, and generates a starting point that includes applicable features such as Webpack dev middleware, server-side prerendering, and efficient production builds.
27+
If you want to build a brand-new ASP.NET Core app that uses Angular 2 / React / Knockout on the client, consider starting with the `aspnetcore-spa` generator. This lets you choose your client-side framework, and generates a starting point that includes applicable features such as Webpack dev middleware, server-side prerendering, and efficient production builds. It's much easier than configuring everything to work together manually!
2828

29-
````
30-
// install yeoman, the generator, and a short-term global webpack dependency
31-
npm install -g yo generator-aspnetcore-spa webpack
29+
To do this, first install Yeoman and these generator templates:
3230

33-
// go to a new directory and install your framework of choice!
34-
cd some-empty-directory
35-
yo aspnetcore-spa
31+
npm install -g yo generator-aspnetcore-spa
3632

37-
// Run it!
38-
dotnet run
39-
````
33+
Then you can generate your new application starting point:
4034

41-
For more details see: [getting started with the `aspnetcore-spa` generator](http://blog.stevensanderson.com/2016/05/02/angular2-react-knockout-apps-on-aspnet-core/). It's much easier than configuring everything to work together manually!
35+
cd some-empty-directory
36+
yo aspnetcore-spa
4237

38+
Finally, once the generator has run and restored all the dependencies, you can start up your new ASP.NET Core Single Page Application:
39+
40+
dotnet run
41+
42+
For a more detailed walkthrough, see [getting started with the `aspnetcore-spa` generator](http://blog.stevensanderson.com/2016/05/02/angular2-react-knockout-apps-on-aspnet-core/).
4343

4444
## Adding to existing applications
4545

0 commit comments

Comments
 (0)