I am starting out angular app with angular-fullstack in my Windows 7 box. I installed bunch of npm packages with -g options, including grunt-bower-install. I created the app
npm install -g bower
doesn't install bower components, you should run as well bower install
to have all bower's components installed and then run grunt serve
. It should work fine
npm install -g bower
bower install
grunt serve
It's worked too
In my case, I added sudo
for it to work. So, I ran sudo npm install -g bower
and then bower install
. grunt serve
then worked when I ran it.
Try to do bower install
. If its failing saying not able to connect to git then you can change repo pointing location by simply running below command
$ git config --global url.https://github.com/.insteadOf git://github.com/
This will ensure that you will be downloaded over https instead of git if its causing orginasation firewall to block it.
npm install -g bower
bower install
grunt serve
worked for me ...
I had the same issue, here's what worked in my case:
After that, grunt serve command worked perfectly. Note: maybe installing Git and running bower install would suffice in your case.