Angular 4 Nuget Packs

I want to try the new version of Angular (4.1.x), however, the Nuget Angular package claims to be version 1.6.x - which was released in April, which coincides with Angular 4. Does anyone know if this is the package I'm looking for if I wanted to work with the latest version of Angular 4?

+6
source share
3 answers
Package

Angular, present in Nuget, is a package AngularJSthat is a full version angular(first version).

angular(named angular, not AngularJS, published with version> 2.0.0 on npm as @angular/...) is missing from Nuget as a package, so you cannot find it.

+6

- , npm install -g @angular/cli Nuget. Angular cli https://angular.io/guide/quickstart

+4

If you want to install, you can use Install-Package Angular4 -Version 1.1.0and follow these steps:

Angular 4
*********

Prerequisites
`````````````
1. Download and Install Node js
2. Install Visual studio 2015 update 3 or above
3. Download and Install TypeScript 2.6.1 for Visual Studio 2015 (https://www.typescriptlang.org/#download-links)

Follow the steps to install package.
````````````````````````````````````
1. Create an new project with empty template and include dependencies for MVC and WebApi to the project
2. Install the package using command 'Install-Package Angular4 -Version 1.1.0'

Follow the steps after package installation
```````````````````````````````````````````
1. Open Node.js Command Prompt
2. Navigate to project location(use commands such as pushd,cd etc)
3. Run the command 'npm install'
+1
source

Source: https://habr.com/ru/post/1016989/


All Articles