Ask HN: Why Did VSCode Win?
1–10 of 17 posts
Re: Ask HN: Why Did VSCode Win?
#2Re: Ask HN: Why Did VSCode Win?
#3As part of their new form of 'Embrace, Extend and Extinguish' strategy after acquiring GitHub, a significant part of the ecosystem of cool plugins, services like live share, etc are exclusively focused and supported on VSCode which is a further form of lock-in and pushes out editors like Atom.
After the acquisition, Microsoft was maintaining both Atom and VSCode and one of them had to go and they knew it had to be Atom; unsurprisingly.
Re: Ask HN: Why Did VSCode Win?
#4Web platform is a great tool, that allows rapid development with very fast results.
Extensibility. With JS under the hood & a plugin system, people were able to create tons and tons of value ontop of the base system very quickly. This was the promise of tools like Eclipse for a long time, but development was cumbersome & heavyweight. Some of the win here is again that the web platform is already extremely well known and popular. Some of it is more refined architectural tastes. But creating new value in vscode was easy, in a way it's never been before. The existing capabilities are themselves great examples. There's many more examples too. https://code.visualstudio.com/api/extension-guides/overview
Lack of competition. VSCode aside the market hasn't changed much in a decade. Not a lot had changed.
Light & fast. Starts stupid quick, runs stupid quick.
Targets the important stuff. Fantastic for webdev, great debugging, linting experiences. Well integrated & capable IDE.
Liveshare. Holy shit, liveshare. I've spent dozens of hours trying to figure out how to collaborate with coworkers & friends in the past. Floobits, a random assortment of odd other projects... nothing compares to how quick & easy & simple it was connecting to someone else. And being able to then just navigate the project, or follow them, or follow someone else. By compare, Atom's TeleType offered... almost nothing. Barely better than coding over zoom.
I was going to make a guess & say that a huge advantage was that VSCode won because it was a late mover, because we got way better at tech, & much more is within reach. I was doing some searching around to understand what tech (beyond Electron) it's built with, and found this neat interview[1] with longtime dev Benjamin Pasero that goes deep into the history. Evidently it's from 2011?! Holy shit; didn't know that. One of the first TypeScript projects out there. This mainly reinforces that it's just been a product of a lot of time & money. VSCode itself has a number of other vscode sub-dependencies, but off the bat, I'm not seeing a ton of other high-value big-ticket libraries they've leveraged to do their thing.
One other win is just having a well-defined UI architecture, that provides a reasonable backbone/structure to develop around: https://code.visualstudio.com/api/ux-guidelines/overview
Language Server Protocol sealed the deal, as a way to "interface" with any given language.
[1] https://www.git-tower.com/blog/developing-for-the-desktop-vs...
Re: Ask HN: Why Did VSCode Win?
#5It was 'literally' designed to win. Microsoft Visual Studio branding is much stronger than 'Atom'. As part of their new form of 'Embrace, Extend and Extinguish' strategy after acquiring GitHub, a significant part of the ecosystem of cool plugins, services like live share, etc are exclusively focused and supported on VSCode which is a further form of lock-in and pushes out editors like Atom. After the acquisition, Mic…
Re: Ask HN: Why Did VSCode Win?
#6My experience with Atom was that it was a stereotypical “Electron” app in all the bad ways. It was very slow to start and the text editor was laggy; the UI was way too spacey and it was hard to find things and I just didn’t like it; and there were lots of bugs.
VSCode is also implemented in Electron and it has bugs and UI quirks, especially with extensions. But it launches almost instantly, text editing is almost instant (even if extensions are slow thanks to some sort of priority threading), the UI is clear and compact, it has more key combinations. Once Microsoft introduced the LSP I think it was over.
Re: Ask HN: Why Did VSCode Win?
#7And the plugin ecosystem + declarative configuration makes it really good to personalize.
Re: Ask HN: Why Did VSCode Win?
#8Re: Ask HN: Why Did VSCode Win?
#9Richard Stallman wants me to use eMacs. Microsoft wants me to use VSCode.
I just want to see Visual Studio for Linux.
Re: Ask HN: Why Did VSCode Win?
#10Money/time. Microsoft dumped a ton of effort into doing a good job. Web platform is a great tool, that allows rapid development with very fast results. Extensibility. With JS under the hood & a plugin system, people were able to create tons and tons of value ontop of the base system very quickly. This was the promise of tools like Eclipse for a long time, but development was cumbersome & heavyweight. Some of the win…