Live data from Hacker News

Ask HN: Is there a reasonable, actually integrated Web IDE out there?

news.ycombinator.com

11–20 of 42 posts

Re: Ask HN: Is there a reasonable, actually integrated Web IDE out there?

#11
post #5

If you set up a node.js project with Webstorm through the Webstorm UI and deploy with a plugin or built in feature you've pretty much get the most fully integrated IDE there is for node projects. It has testing built in, debugging inside the IDE, dynamic updates your browser, supports a ton of JavaScript libraries and npm as well as React and ES6/ES7 syntax. There's nothing else really like it. IntelliJ based browser…

Also enable zero latency typing. Massive difference.

Re: Ask HN: Is there a reasonable, actually integrated Web IDE out there?

#13

Cloud 9? https://c9.io/

I have been using C9 for years now and I found it to be the best of the lot. Its a shame, I cannot afford the premium subscription for now but would love to pay them for their gratitude and awesome product.

Re: Ask HN: Is there a reasonable, actually integrated Web IDE out there?

#14
post #8

As a free alternative to let's say WebStorm i have been using NetBeans for some time. It integrates HTML, JS, Angular and CSS in a usable way and has many plugins (browser js debugging, nodejs). It is worth a try.

Ditto. I naively ignored netbeans for years, and I regret not using it sooner. Its impressively robust for web development.

Re: Ask HN: Is there a reasonable, actually integrated Web IDE out there?

#15
If you can overlook the RAM consumption and occasional slowness, Eclipse is actually a pretty amazing tool as an integrated platform. I routinely edit client side, server side, HTML, CSS and multiple back end languages (python, PHP, Groovy) all in a single integrated setup including integrated debugging etc. I think for single language stuff there's nearly always something better, but at pulling it together I don't know anything as good as Eclipse (probably Visual Studio might be but I have not used recent versions in that capacity).

Re: Ask HN: Is there a reasonable, actually integrated Web IDE out there?

#17
Hi dakami,

I think that SourceLair (https://www.sourcelair.com) could fit your needs.

It let's you work on Node.js web applications in your browser and write both client side (including React JSX) and server side JavaScript.

You also get an HTTPS public URL (subdomain) that works out of the box with Node.js, while it integrates with Git and GitHub in order to collaborate and lets you deploy your projects to Heroku with a single click.

You can try it out for free at https://www.sourcelair.com.

Disclaimer: I am one of the people who co-founded and built SourceLair.

Re: Ask HN: Is there a reasonable, actually integrated Web IDE out there?

#19
post #4

Visual Studio and Webstorm are the most complete I'd say. Surely you can use Eclipse or IntelliJ (with kotlyn). -- Wait, when you say "web ide", do you mean "to make web projects" or do you mean "web-based ide"?

> do you mean "to make web projects" or do you mean "web-based ide"?

That is a really interesting question.

For 1: If you have no money try NetBeans / Eclipse. In my experience eclipse can be a pain in the ass if you need certain plugins etc. Sometimes you have to search the web for repo-adresses that are compatible with your IDE-version and the other plugins and if you don't use a new version you may have trouble installing plugins from the marketplace. NB is pretty good for open source software and I prefer it to Eclipse.

If you have the money / are a student (who don't have to pay), just use WebStorm / IntelliJ Idea. It is a really superior IDE and you don't want to use anything else once you tried the integration / workflow with it, it's just beautiful how things 'just work'.

For 2: I checked out codio, but the price is really expensive and I'd rather use intelliJ etc. Depending on what you want to write something like Firefox Web IDE doesn't look that bad (https://developer.mozilla.org/en/docs/Tools/WebIDE). For the web I think the best thing would be to port atom.io to a webApp. This would be the next awesome thing ;-)

Post reply on HN