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

Commit 4665d1f

Browse files
MarkPieszakSteveSandersonMS
authored andcommitted
docs(readme): Show how to get started with yeoman
1 parent a631f77 commit 4665d1f

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

README.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,19 @@ Everything here is cross-platform, and works with .NET Core 1.0 RC2 or later on
2626

2727
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.
2828

29-
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!
29+
````
30+
// install yeoman, the generator, and a short-term global webpack dependency
31+
npm install -g yo generator-aspnetcore-spa webpack
32+
33+
// go to a new directory and install your framework of choice!
34+
cd some-empty-directory
35+
yo aspnetcore-spa
36+
37+
// Run it!
38+
dotnet run
39+
````
40+
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!
3042

3143

3244
## Adding to existing applications

0 commit comments

Comments
 (0)