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

HTML Installing Atom Packages

Upload to the web

Hi,How do you upload your website from atom text editor to the browser for the public to view.Using a PC.

1 Answer

Michael Hulet
Michael Hulet
47,912 Points

I bet this isn't a solution to do this directly from Atom (unless you have a setup where your server serves your website from a git repository that you have push rights to), and I don't think Treehouse has any tutorials on it directly, as this is a very big topic and is often a whole different department at tech companies. It ultimately depends on what you've made, what tools you've used, and which hosting service you'd like to use. I'd recommend picking a hosting service and reading their docs on how to deploy to them

  • If you have a static site (just HTML, CSS, and front-end JavaScript), I recommend GitHub Pages
  • If you have something that requires backend code and are looking for something to easily/quickly deploy to, I recommend Heroku
  • If you want total control over the whole deployment process, I like hosting all my code on a VPS with DigitalOcean. If you choose to use them, you can use my referral link to sign up

Thanks