3

I am trying to add New Component of KendoUI through Node package manager and unfortunately got below error:

Reference URL : http://www.telerik.com/kendo-angular-ui/getting-started/

enter image description here

Guide me to resolve above error.

Alex Gyoshev
  • 11,929
  • 4
  • 44
  • 74

2 Answers2

2

The official Angular examples, as well as Kendo UI for Angular 2, require NPM v3. See this answer for more information on how to update NPM on Windows.

Community
  • 1
  • 1
Alex Gyoshev
  • 11,929
  • 4
  • 44
  • 74
2

The steps are mentioned in the link that you provided

http://www.telerik.com/kendo-angular-ui/getting-started/

To enable the Progress NPM registry on your machine, you should associate the @progress scope with the registry URL. Run the following command in your terminal:

npm login --registry=https://registry.npm.telerik.com/ --scope=@progress

NPM will ask you for your Telerik account credentials and an email. Enter the username (if username is email address use everything before the @) and password you use to log in your Telerik account.

After that just simply run

npm install
Glorfindel
  • 21,988
  • 13
  • 81
  • 109
Debopam Chanda
  • 161
  • 1
  • 7