DEV Community

Discussion on: Is there a future for the Atom editor?

Collapse
 
kenbellows profile image
Ken Bellows

I mean, VS Code is also an Electron app, and for the most part it flies. I have very few performance complaints, and I've used it as my full-time editor for like a year now.

As for comparing with editors built in other languages, two thoughts:

  • First, the fact that Electron is built on web technology means that writing plugins and language extensions and such is super accessible to anyone who already knows web tech, without needing to learn specific GUI packages or anything. And seeing that web tech is sort of slowly taking over everything, that's a big win for Electron.

  • Second, don't dismiss the performance gains of Web Assembly. The more WASM stabilized and popularizes, the less need there will be to move away from Node-based tech once you hit performance limits. You can even cross-compile existing libraries for processing-heavy tasks.

So I don't think VS Code (or Electron) is going anywhere anytime soon.