This is a starter template for developing Angular2 with ASP.NET Core WebAPI Applications using webpack for bundling. It has the webpack dev server included as well as css styles in webpack, hashes for your files, automatic injection into the index.html etc.
This template is an Angular2 application with an http-service getting values from an ASP.NET CORE WebAPI.
How to set up Angular 2 and Webpack in Visual Studio with ASP.NET Core
Start by typing
npm start
at the level of the "package.json" file and browse to
localhost:5000
Now you can just press "play" inside Visual Studio to get started.
If you change the *.ts-files you need to run the tsc
command manually.
npm run startWebpackDevServer
will run the webpack dev server. After this you can browse to
localhost:8080
and see the page working. You can do changes to the application and they will be automatically reflected in the browser.
You can type npm run build
and browse to localhost:5000
to see the page. This will trigger an webpack build and an dotnet run
. Changes will not automatically appear in the browser.