TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Browser based IDEs. Do they work?

17 pointsby circuiterover 11 years ago
Does anyone here work predominantly with a browser based IDE? There seems to be a lot of them popping up lately so I was hoping you could share your experience with which IDE you use and what you use it for.

9 comments

danpalmerover 11 years ago
I&#x27;d love to be able to use a browser based IDE for development on a Chromebook or other machines that I haven&#x27;t fully set up, but I can&#x27;t see it happening for a while for the following reasons:<p>- Plugins - a major part of any IDE like Eclipse or Visual Studio, or text editors like Sublime Text - Speed - Single threaded JavaScript isn&#x27;t going to beat multithreaded Python, Java, C#, etc, and when dealing with large text documents, or trying to apply meaning to code structure intelligently like modern IDEs do, this is going to be even more of an issue. - System Integration - I use keyboard shortcuts for a considerable amount of my work in IDEs, but the ability of a browser to use keyboard shortcuts is severely diminished. Something like Vim&#x27;s command mode might work, but this is only one style of shortcuts that many people are unfamiliar with or actively dislike. - System Programs - IDEs are supported by a large number of programs behind the scenes, this would mean any IDE would probably need to be backed by a VPS anyway, and then not only are you even more dependent on an active connection, but also you have a large cost overhead just to be able to work from another machine.
alexhawdonover 11 years ago
I used ShiftEdit to develop a Python&#x2F;Django webapp. I appreciated the cloudiness as I was quite mobile at the time and my laptop wasn&#x27;t particularly portable. At the time it was the only free offering that didn&#x27;t require a connection to GitHub, necessitating the code be open-sourced (quality was a bit low&#x2F;hacky and the world didn&#x27;t really need to see it!). Overall, I was pretty pleased with the experience.<p>Now I run Sublime Text on a laptop that goes everywhere with me and deploy using a proper VCS. I would certainly use ShiftEdit again in future if I was stuck without my laptop and needed to make a few quick changes to something, but I wouldn&#x27;t use it as a replacement for a local editor.
throwaway344over 11 years ago
I use nitrous.io . It&#x27;s fast, comes with all the python tools I could need, and the support is near instant. I have one free development box, and it syncs from my Chromebook to my desktop . All I could want really is a better editor (Ace please!)
评论 #6730019 未加载
dasbothover 11 years ago
Do you mean something like <a href="http://ideone.com/" rel="nofollow">http:&#x2F;&#x2F;ideone.com&#x2F;</a>? It&#x27;s something I found the other day but haven&#x27;t tried yet. I think it&#x27;s probably more for testing some code snippet rather than working with a larger application, though. One I do use, however, is Adafruit&#x27;s WebIDE for developing on the Raspberry Pi. <a href="http://learn.adafruit.com/webide/" rel="nofollow">http:&#x2F;&#x2F;learn.adafruit.com&#x2F;webide&#x2F;</a> Perfect solution for coding on the Pi and it&#x27;s linked to Github&#x2F;BitBucket.
n3rdyover 11 years ago
I&#x27;ve just started playing around piecing together one. I&#x27;m using node.js as the server, redis as the database and virtual file system, ace for the text editor, jquery and some jquery ui plugins for the rest. My goal is to build something I can roll out and run with a raspberry pi and use as something like a pocket cloud ide.<p>Also for editing the actual html and other files, I wrote a small console app in c# that uses the FileSystemWatcher class to monitor a htdocs folder, which updates the redis key&#x2F;values in realtime.
disdevover 11 years ago
I&#x27;ve had pretty good success with Cloud9&#x27;s IDE.<p>I like that it&#x27;s SSH based... I can secure it reasonably well and run any terminal command I need. It has decent code completion (at least for Node), a nice file tree view, can format code with indentations, etc... overall, a pretty nice experience.<p>The way I have it set up, is I work on a dev VPS (using their SSH). For any deploys, I check in my code, then can terminal into the production machine and git it. So, I can debug through the dev setup, then deploy to production when ready.
ialexpwover 11 years ago
I&#x27;ve just started trying to use <a href="https://codio.com/" rel="nofollow">https:&#x2F;&#x2F;codio.com&#x2F;</a> it&#x27;s pretty nice, not sure if it can take over desktop-based ones though.
Tarangover 11 years ago
I&#x27;ve had a terrible experience with them. Some of them try to do code sharing&#x2F;OT but if I typed too fast they would crash my browser &amp; I lost all my changes. I think my latency played a role but i&#x27;m not too sure.<p>That said I know of people using them with Chromebooks. Its nice because they can code the same file at the same time.
eonilover 11 years ago
I really wanna know how those IDEs offer debugging.