Minimum Viable Editor

2014-05-07

Atom, a new text editor for programmers, just got made open source today.

It's interesting mostly in that it's based on browser tech. They took Chromium, paired it down to a stand alone app shell, added node.js's libraries for accessing the file system, networking, etc, and then used it to make a text editor.

One thing that's really cool IMO is that given it's based on a browser you have access to ALL FEATURES OF HTML at your disposal. Where as most editors are designed to just display plain text in a single (possibly user selectable) font, a browser can display text in all kinds of fonts and styles, it can display images, it can draw dynamic images using canvas, webgl, svg, .. it can display video and play audio, etc. That's more than any other text editor I know of. So I'm really interested to see if anyone figures out interesting ways to augment a text editor using those features.

(more...)
Comments