Open VSX vs VS Code Marketplace — where should you publish your extension first?
The author shares their experience of publishing a personal theme extension on both Open VSX and the VS Code Marketplace. Surprisingly, the Open VSX platform garnered significantly more downloads compared to the VS Code Marketplace. This led the author to conclude that Open VSX has a more engaged audience for developer tools and themes.
- ▪The author's extension received over 5,200 downloads on Open VSX compared to just 56 on the VS Code Marketplace within the same period.
- ▪Open VSX is an open-source extension registry used by editors that cannot access the official Microsoft Marketplace.
- ▪The author suggests that developers targeting themes or productivity tools should consider publishing on Open VSX first due to its more engaged audience.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3936517) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } dekidev Posted on May 17 Open VSX vs VS Code Marketplace — where should you publish your extension first? #devjournal #opensource #tooling #vscode I built Dusk Office for myself. No seriously — I was the only user. Ever. It was just my personal theme that I used every single day while working on my projects. I liked how it looked, it felt premium, and it made my long coding sessions easier on the eyes.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).