How to install image-upload module in angular

Viewed 172

I want to install image-upload module in my angular project for this I am running npm install angular2-image-upload --save commmand but it showing thsese errors

npm ERR! code ENOLOCAL npm ERR! Could not install from "node_modules\angular2-image-upload" as it does not contain a package.json file.

Thanks in advance

1 Answers

The problem could be the project you created, try to create a new project using

ng new profile

and then do

npm install angular2-image-upload --save

Related