Live data from Hacker News

Show HN: Codebox - Open-source cloud and desktop IDE

github.com

51–60 of 69 posts

Re: Show HN: Codebox - Open-source cloud and desktop IDE

#53
post #39

Signed up with codebox.io. When trying to create a "box" I get this: Error creating this box Error: undefined: html, body, iframe { margin: 0; padding: 0; height: 100%; } iframe { display: block; width: 100%; border: none; } Application Error " rel="nofollow">https://sx0z2mmmtv96.statuspage.io/heroku/error"> Application Error

[deleted]

Re: Show HN: Codebox - Open-source cloud and desktop IDE

#54

npm install -g I'm seeing this regularly in node.js projects. Why is it common to install globally and, well, crap up your system like that? Are they running each app in a separate container/vm? This one seems to made for desktop though.

The global install is only for when you're running it locally on your machine (it isn't fully packaged for the desktop yet, but will be soon).

On our cloud service (https://www.codebox.io) we do run each app in a seperate container/VM of course.

Re: Show HN: Codebox - Open-source cloud and desktop IDE

#55
post #39

Signed up with codebox.io. When trying to create a "box" I get this: Error creating this box Error: undefined: html, body, iframe { margin: 0; padding: 0; height: 100%; } iframe { display: block; width: 100%; border: none; } Application Error " rel="nofollow">https://sx0z2mmmtv96.statuspage.io/heroku/error"> Application Error

Refresh and the box should be there.

True. But now it gives me an "Authorization Required" dialog.

Re: Show HN: Codebox - Open-source cloud and desktop IDE

#57

npm install -g I'm seeing this regularly in node.js projects. Why is it common to install globally and, well, crap up your system like that? Are they running each app in a separate container/vm? This one seems to made for desktop though.

The only time I see this is when installing a command-line utility of some kind. For instance, if you install express with -g you can generate an app skeleton.

Installing libraries globally would be a problem, but it doesn't seem like this is what Codebox is doing.

Re: Show HN: Codebox - Open-source cloud and desktop IDE

#58

is there a way to run this on a local machine. from the root, I run "node index.js" and nothing happens. from /core/cb.server, I run "node main.js" and nothing happens. I installed by cloning and cd into repo, ran npm install. I did not do "npm install -g codebox" because I wanted all the files in a specific directory. Therefore, I'm not using the codebox command that is supplied in the readme. I wanted to start it b…

You can probably start it by running codebox/bin/codebox.js directly. (It has the shebang line at the top, so no need to explicitly start node.)

https://github.com/FriendCode/codebox/blob/master/bin/codebo...

Re: Show HN: Codebox - Open-source cloud and desktop IDE

#59

npm install -g I'm seeing this regularly in node.js projects. Why is it common to install globally and, well, crap up your system like that? Are they running each app in a separate container/vm? This one seems to made for desktop though.

npm install -g is more like apt-get install

If you don't want global state you could use a VM?

It's global because it is not per project. For example, I don't want to install a tool in every folder that I might happen to use it in. (Or bother setting paths and symlinks)

Re: Show HN: Codebox - Open-source cloud and desktop IDE

#60

I'd love to see someone build an IDE that lives locally but syncs up to a cloud service so I can pull everything back down to a different machine and work there. I think you could actually do this with Docker, where your "IDE" would not be an editor, but a virtual system with the code, the database, a web server, the right version of Python/Ruby/foo, dependencies, etc., and you could use whatever editor you wanted. A…

+1 to this suggestion! Something that feels as seamless as Dropbox would make my dreams come true. And even better if it could sync to different providers of my choosing, e.g. Dropbox, Google Drive, etc. etc.
Post reply on HN