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.
51–60 of 69 posts
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.
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
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.
On our cloud service (https://www.codebox.io) we do run each app in a seperate container/VM of course.
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.
I'm doing my best to restore the service back as soon as possible, stay tuned I'll update this comment and follow our twitter feed @CodeboxIO
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.
Installing libraries globally would be a problem, but it doesn't seem like this is what Codebox is doing.
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…
https://github.com/FriendCode/codebox/blob/master/bin/codebo...
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.
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)
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…