Source code

Revision control

Copy as Markdown

Other Tools

try {
var source = new EventSource("../resources/message.py")
source.onopen = function(e) {
this.close()
postMessage([true, this.readyState])
}
} catch(e) {
postMessage([false, String(e)])
}