Currently run() for Electron windows is defined as
function Base.run(win::Window, code::AbstractString)
# <...>
end
It would be great to also support JSONText, as that would allow for js-Syntax-Highlighting in VS-Code
Base.run(w::Window, code::JSON.JSONText) = run(w, JSON.json(code))
run(win, js"""
console.log('This looks pretty!')
""")

Currently
run()for Electron windows is defined asIt would be great to also support JSONText, as that would allow for js-Syntax-Highlighting in VS-Code