I have a development server which runs mostly python-based apps. I like the interface of tools like cloud9, but since I have a server I\'d rather have something similar on my o
Getting Cloud9 IDE installed on your own server is not as hard as you may think.
It is basically these steps:
Install node.js
Clone Cloud9's Git repository to your server and install
Run a command in the terminal to start the Cloud9 app:
bin/cloud9.sh -w ~/git/myproject -l 0.0.0.0
You can then access your Cloud9 app at http://yourserveraddress:3131
(3131 being the default port it will serve on.
As requested, you will not have learned much about node.js in the process ;)