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 Adding Data To Your App Using ng-model

I have installed ng-inspector in Google Chrome ver 48.0.x Clicking on its icon in the toolbar does nothing! Any ideas?

I am using Chrome version 48.0.2564.116 m (up-to-date as of now) I am using Windows 10. I am not using workspaces, instead I am running this from my local hard drive.

2 Answers

Edward Smith
PLUS
Edward Smith
Courses Plus Student 4,230 Points

Jaro is correct, you need to have a server running for ng-inspector to work. If you have npm, you can install live-server globally and start the server from the root directory of your application with

live-server

or you can use python's simplehttp server with

python -m SimpleHTTPServer

I think ng-inspector only works when you run it from a server. Try running your app on your localhost, it should work..