Updated 06. Setting the Web SPA application up (markdown)

Cesar De la Torre 2017-08-04 12:33:10 -07:00
parent 20c2fc15ad
commit fc61d3cbb9

@ -27,14 +27,14 @@ http://www.hanselman.com/blog/VisualStudio2015FixingDependenciesNpmNotInstalledF
### Build the SPA app with NPM
Now, you need to build the SPA app (TypeScript and Angular 2 based client app) with NPM.
Now, you need to build the SPA app (TypeScript and Angular 4 based client app) with NPM.
* Open a command-prompt window and move to the root of the SPA application (src\Web\WebSPA\eShopOnContainers.WebSPA)
* Run the command <b>npm install</b> as shown below:
<img src="img/spa/npm-install.png">
---------------
**IMPORTANT NOTE/UPDATE (In research):** As of early August 2017, seems like some potential changes in NPM environment might be impacting the project. If you have a similar issue than [this issue](https://github.com/dotnet-architecture/eShopOnContainers/issues/253): try running **"npm install enhanced-resolve@3.3.0"** instead "npm install". This NOTE will be updated as soon as we have explored this issue in further details.
**IMPORTANT NOTE/UPDATE:** Seems like in some NPM environments running just "npm install" does not work properly. If you have a similar issue than [this issue](https://github.com/dotnet-architecture/eShopOnContainers/issues/253): try running **"npm install enhanced-resolve@3.3.0"** instead "npm install". (Please, provide your experience at that mentioned issue)
---------------