Analysis updated 2026-07-13 · repo last pushed 2022-09-28
Build custom UI panels for Electron desktop applications.
Create plugins for the Atom editor with lightweight UI components.
Build UI components with fine-grained control and no heavy framework overhead.
| atom/etch | juliangarnier/3d-hartwig-chess-set | stephenlthorn/auto-identity-remove | |
|---|---|---|---|
| Stars | 555 | 537 | 576 |
| Language | JavaScript | JavaScript | JavaScript |
| Last pushed | 2022-09-28 | 2023-03-31 | — |
| Maintenance | Dormant | Dormant | — |
| Setup difficulty | easy | easy | moderate |
| Complexity | 2/5 | 2/5 | 3/5 |
| Audience | developer | designer | general |
Figures from each repo's GitHub metadata at analysis time.
Archived since December 2022 with no updates, install via npm but expect no bug fixes or maintenance.
Etch is a JavaScript library for building user interface components, the buttons, panels, and other visual elements that make up a web or desktop application. It was originally created by the Atom editor team to help developers build UI pieces for Atom packages and Electron desktop apps. The project is now archived, meaning it's no longer actively maintained. The core idea is that you write plain JavaScript classes that describe what your UI should look like at any given moment. Etch handles the work of translating that description into actual on-screen elements and keeping them in sync when your data changes. It uses a "virtual DOM" approach, it builds a lightweight representation of your UI in memory, compares it to what's currently on screen, and applies only the necessary changes. This makes updates efficient without requiring you to manually manipulate individual page elements. A developer would use Etch when they want fine-grained control over their components without the overhead of a large framework. For example, someone building a plugin for the Atom editor, or a custom panel in an Electron app, might choose it because it stays out of the way. Components are just regular JavaScript objects, you create them, update them, and destroy them explicitly by calling Etch's functions at the right moments. There's no hidden machinery or base class to inherit from, which the team valued for keeping things predictable. One notable design choice is that Etch deliberately doesn't manage component state for you. Unlike frameworks such as React that bundle state management into the component lifecycle, Etch expects you to store and track your own data, then explicitly tell it when something has changed and the screen needs refreshing. This keeps the library small and the behavior transparent, but it also means more manual work for the developer. Since the project was archived in December 2022, anyone considering it today should understand it won't receive updates or bug fixes.
Etch is a lightweight JavaScript library for building UI components with a virtual DOM. Created by the Atom editor team, it is now archived and no longer maintained.
Mainly JavaScript. The stack also includes JavaScript, Electron, Virtual DOM.
Dormant — no commits in 2+ years (last push 2022-09-28).
No license information was provided in the explanation, so the licensing terms are unknown.
Setup difficulty is rated easy, with roughly 5min to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Verify against the repo before relying on details.