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 trialNathan Brenner
35,844 Pointsno response from ng-inspector
When I click on the ng-inspector extension, nothing happens. Anyone else experiencing this bug?
8 Answers
Nathan Brenner
35,844 PointsThis 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.
maxgironcodes
6,294 PointsI 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
12,829 PointsThis worked for me. Took 10 seconds, literally, to set up.
Patrick Koch
40,498 Pointsthanks for the info Nathan nice to know, my luck that I started this app on my MAMP server.
g patrick
Agustin Vargas
10,896 PointsThanks 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
3,599 PointsThis really helped me too, thanks Nathan!
Dog & Koala Bear
11,978 PointsThank you so much!!!!!
Alecia Mason
1,949 PointsNathan 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
10,896 PointsThanks 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
Full Stack JavaScript Techdegree Graduate 22,246 PointsIf 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.
Vincent Tatan
22,960 PointsVincent Tatan
22,960 PointsI 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