Reputation: 21
I would like to know if it is at all possible, or has been attempted to install Node.js on Google Drive or run a multi-player web app from Google Drive?
Google Drive can be used as a web server to host your website.
Sadly, I am simply an ambitious and motivated coding noob, however, my research has yielded no answers to this question. Perhaps I am not looking at things the right way, is this something that would be done with the Google Drive API?
Thank you in advance.
Upvotes: 2
Views: 2135
Reputation: 28728
This is not possible:
With Drive, you can make web resources — like HTML, CSS, and Javascript files — viewable as a website. [...] Google Drive does not support web resources that make use of server-side scripting languages like PHP.
Upvotes: 0
Reputation: 32711
Google does not allow you to run any own content in the Google drive, it is a simple cloud storage. HTML pages are static and not processed on the server, that's why they work. It does on the Google App Engine, but the Google App Engine does not support node.js.
You can find a list of supported hosting providers in the node wiki.
Upvotes: 2