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

elie kfouri
elie kfouri
2,389 Points

in the new intro to javascript , we created a game, how can i put that game on my resume

in the new intro to javascript, we created a game, how can I put that game on my resume or on like a viewport where if somebody clicked the link they could view the game, I tried the chrome extension it's not displaying the game. please help me, I would really like to put it on my resume and show it to my friends

1 Answer

Dane Parchment
MOD
Dane Parchment
Treehouse Moderator 11,075 Points

While there are a multitude of ways to go about doing this, I believe that there are really only three ways to do this effectively.

  1. Utilize a version control repository to host the code for your project, that way others can view, download, and even collaboratively work on your code. The most popular version control software is git, and it's best repository and hosting service is github. I recommend you learn how to use these tools as they are valuable and in my honest opinion, essential for anyone trying to showcase their work on the web. In fact, companies during interviews like to see a programmer's github account so that they can see what kind of projects they have worked on and also see if they follow good programming standards.
  2. Purchase a domain (mygame.com for example) and use a web-hosting service (Like GoDaddy). This is another common way to showcase your work, it will require you to pay for a domain name (the url that you type into the search bar to go to a website) and then a web-host to actually host your files to that domain. Then you can create an actual portfolio website and place your game on their yourself.
  3. Utilize cloud-based services like AWT and Heroku to host your application on their cloud servers, you can do this for free but it requires a bit more knowledge and knowhow to get setup (especially in regards to git for Heroku), and the free versions limit the size that your application can be (along with putting the application to sleep every now and again).

I recommend you create a github account to accomplish the goal that you want to do. However, it will require your friends to have to download the code manually to run the application. Simply create an account at github and then follow the instructions when creating a new repository.

Also follow these instructions:

  1. Download Git and gitbash
  2. Go here and learn how to use the git command line to create, and push code to your newly created repository!

Hope that helps, if you need anymore information let me know!