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) Controllers and Scope Tools To Make You An Angular Pro

Nathan Brenner
Nathan Brenner
35,844 Points

no response from ng-inspector

When I click on the ng-inspector extension, nothing happens. Anyone else experiencing this bug?

8 Answers

Nathan Brenner
Nathan Brenner
35,844 Points

This is an open issue with ng-Inspector https://github.com/rev087/ng-inspector/issues/8

It works fine if the app is connected to a server. If you're following along with the videos, you can run python -m SimpleHTTPServer 3000, open a browser to localhost:3000 and the inspector works. 3000 can be replaced with any port number.

Vincent Tatan
Vincent Tatan
22,960 Points

I tried running the command python -m Simple HTTPServer 3000 but it gave me an error: "No Module named SimpleHttpServer". I am using windows and previously had installed python dev from Anaconda. What should I do? Thank you

I ran into this problem today. What I ended up doing was installing Web Server for Chrome: https://chrome.google.com/webstore/detail/web-server-for-chrome/ofhbbkphhbklhfoeikjpcbhemlocgigb

Christopher Johnson
Christopher Johnson
12,829 Points

This worked for me. Took 10 seconds, literally, to set up.

Patrick Koch
Patrick Koch
40,496 Points

thanks for the info Nathan nice to know, my luck that I started this app on my MAMP server.

g patrick

Agustin Vargas
Agustin Vargas
10,896 Points

Thanks Nathan. That command is no longer working though. For those of you having this issue, use this command: python -m http.server <port>

example: python -m http.server 3000

Hannah Mills
Hannah Mills
3,599 Points

This really helped me too, thanks Nathan!

Alecia Mason
Alecia Mason
1,949 Points

Nathan is no longer a member of treehouse, but I’ve worked with him, and he says “Thanks Agustin, I’ve actually been using lite-server from npm. It’s really easy to use. It’s the same that used on the Angular 2 Tour of Hero’s tutorial"

Agustin Vargas
Agustin Vargas
10,896 Points

Thanks for relaying the message. Yeah, there are a lot of options. My message was more for people who wanted to follow his advice but found that that command didn't work anymore. Good luck to you both!

Bruno Navarrete
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Bruno Navarrete
Full Stack JavaScript Techdegree Graduate 22,246 Points

If you're following the Full-Stack JS Tech Degree, you probably already have the http-basic module globally installed. You can run http-server -p 3000 from your command line and access localhost:3000 from your browser to get it to work.