Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript AngularJS Basics (1.x) Using Angular's Built In Directives Using ng-click To Change Application States

Shreyas Ananth
Shreyas Ananth
861 Points

ng-inspect doesnt load

HI All,

I have installed ng-inspect but when i click on that A symbol on right top corner.. nothing comes up.. I am using Windows 10 and chrome. Kindly help.

3 Answers

Henrik Christensen
seal-mask
.a{fill-rule:evenodd;}techdegree
Henrik Christensen
Python Web Development Techdegree Student 38,322 Points

You need to create a local-server somehow to use it (I had the same problem earlier today). If you already got Node.js you can use the cmd prompt:

npm install -g http-server

and when it's installed you just navigate into the folder you want to create a server for and type

http-server -o

Now you should be able to use ng-inspector :-)

Shreyas Ananth
Shreyas Ananth
861 Points

Hey, Many thanks.. It solved the issue...

Why isnt this mentioned in video?