Skip to content
This repository has been archived by the owner on Feb 21, 2021. It is now read-only.

kkoziarski/aspnet-core-angular2-starter

Repository files navigation

This is a project to learn how to use Angular2 with ASP.NET Core using VSCode.

Angular part is based on the official Angular's Tour of Heroes tutorial.

Prerequisite

  • Install Node.js and npm
    • Verify that you are running at least node v5.x.x and npm 3.x.x by running node -v and npm -v
  • > npm install -g npm
  • > npm install -g bower
  • > npm install -g gulp
  • > npm install -g typescript
  • > npm install -g typings
  • > npm install -g yo
  • > npm install -g grunt-cli
  • ...OR SHORTLY: > npm install -g npm bower gulp typescript typings grunt-cli yo

Build steps

Steps required after downloading this project

  • cd .\src\Frontend

  • > npm install

  • > gulp rebuild

  • > typings install

  • cd .\src\Backend

  • > dotnet restore

  • > dotnet build

  • > dotnet run

  • > dotnet watch run

  • > gulp watch

Implementation Steps

References & Sources: 1 2 3 4 5 6 7 8 9