Welcome to the CSC Q&A, on our server named in honor of Ada Lovelace. Write great code! Get help and give help!
It is our choices... that show what we truly are, far more than our abilities.

Categories

+17 votes

Some people were talking about firebase, some people were talking about hosting on git. What is the easiest to implement/best place to host your web app?

asked in CSC490_Spring2019 by (1 point)
+2

Does the app require anything to be run on the server side, or is it all client-side Javascript?

(Do you have persistent data that's being stored on a server somewhere? Are you using Firebase, or some other database?)

4 Answers

+9 votes

I don't know anything about posting on git but posting on firebase is very simple to do and is currently what the ACES app uses. Here is a tutorial about hosting on Firebase:

https://firebase.google.com/docs/hosting/

answered by (1 point)
+6 votes

I dont know too much about hosting web apps but i have used a free service called Heroku that was pretty easy to implement. All i needed to do was install a command line tool and linked the service to my application on GitHub.

Heroku

answered by (1 point)
+2 votes

When I made my web game last year, I hosted with EasyDNS. It's pretty cheap, and it let me actually run my game off the site, which I couldn't do hosting on GitHub. I think a lot of that was unique to my case, but you might also run into some issues trying to run your app off the git page, depending on the amount of traffic you expect and what you're actually trying to do.

answered by (1 point)
0 votes

The homebase team is hosting our static site on Github and deploying it using a service called Netlify. It's really easy to learn and pretty intuitive. I personally used Firebase hosting for my individual project, but I prefer GH and Netlify by far. This, of course, would change if we weren't building a static webapp.

answered by (1 point)
0

I prefer gitHub for our react web app because it can be deployed easily with 1-2 steps. You will have a webpage instantly, but you will need to tweak it a little because what you see locally might not be the case when the app is hosted on a web server.

...