tdeck parent
This might be a bit out of date since I haven't looked in a few years, but my sense is that the standard libraries and documentation are often lacking. A batteries included standard library for gForth that could conveniently do basic things like make an HTTP request, display a dialog, or play a sound, without having to awkwardly bind to C APIs, would be really nice.
Not sure that will swing it, have a look at https://github.com/JohnEarnest/Mako/tree/master
Which is basically a Forth for games, that runs on the JVM, and in the browser.
The issue as I see it, is that you have to have a model of the datastack in your head at all times. That's fine for your own code, but for other people's code, stack diagrams will only take you so far.
The ability to scan code, rather than reading it, allow you to mentally drill down when you are ready. Forth requires immersion.
Something like https://xorvoid.com/forsp.html I'm guessing is really the bridge. Something that allows variables without being too complex.