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 Introduction to Programming Basics Writing Your Program

Is there another way to execute js files automatically from notepad without having to save it all the time?

After two days of trying to figure out how to connect my html and java files on the browser, I came to find out that even after I linked the two together; I always have to save each command from notepad than refresh the page in order for me to see the change. So, Is there another way to execute js files automatically from notepad without having to save it all the time?

2 Answers

Jeff Everhart
Jeff Everhart
21,732 Points

You could always try something like CodePen or JS Fiddle. They let you edit HTML, JS, and CSS and render it in real time. Helps a lot when developing something simple, although I wouldn't recommend it for larger or more complex applications.

Thanks!

I think livereload is one of the simpler ways to save having to refresh

Thanks!