MasterCode
MasterCode
> > > The error is simple. As it says, response doesn't exist. That's because in my example, response is what you get from get_dtc_by_status_mask(). Every client function return a...
``` const devicesFound = devices => new Promise(resolve => { process.stdin.setRawMode(true); process.stdin.setEncoding("utf8"); process.stdin.on("readable", () => { const input = process.stdin.read(); if (input === "\u0003") { process.exit(); } else { const...
Using electron
Updated post 1
anything on this?