@@ -61,17 +61,16 @@ for instructions for your platform.
61
61
Docker can be installed in many Linux distributions, macOS, or Windows. The page
62
62
referenced above contains sections to each of the available installations.
63
63
64
- You'll also need to install a number of command line tools that support
64
+ Most components to be installed are done by a package manager. If you have node.js's package manager ` npm ` installed you can skip this step.
65
+ Otherwise install the latest NodeJs from [ nodejs.org] ( https://nodejs.org ) which will install the npm package manager.
66
+
67
+ At this point you will need to install a number of command line tools that support
65
68
ASP.NET core development. The command line templates use Yeoman, Bower,
66
- Grunt, and Gulp to be installed using the node.js's package manager npm which
67
- can be installed from [ nodejs.org] ( https://nodejs.org ) .
68
- One may already have many of these tools, but if not,
69
- run the following command in your favorite shell:
69
+ Grunt, and Gulp to be installed. If you have them installed that is good, otherwise type the following into your favorite shell:
70
70
71
71
` npm install -g yo bower grunt-cli gulp `
72
72
73
- This instructs the node package manager (npm) to install the needed tools.
74
- The '-g' option indicates that it is a global install, and those tools are
73
+ The ` -g ` option indicates that it is a global install, and those tools are
75
74
available system wide. (A local install scopes the package to a single
76
75
project). Once you've installed those core tools, you need to install
77
76
the yeoman asp.net template generators:
0 commit comments