You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran this set of code in my electron application. It just hangs without any console outputs or errors. By deactivating deasync.sleep statement, the console.log() work normally.
var deasync = require(‘deasync’);
setTimeout(function(){
deasync.sleep(250);
console.log("deasync works!");
},1);
Here are the environment it ran in:
Electron: v1.1.3
Node: v4.4.7
OS: Linux Mint 17.1 “Rebecca”
Deasync: v0.1.2
I did a manual node-gyp rebuild on deasync using: node-gyp rebuild —target=1.1.3 —arch=x64
Previously, I tried using deasync v0.1.0 on nw.js, it worked properly.
The text was updated successfully, but these errors were encountered:
I ran this set of code in my electron application. It just hangs without any console outputs or errors. By deactivating deasync.sleep statement, the console.log() work normally.
Here are the environment it ran in:
I did a manual node-gyp rebuild on deasync using:
node-gyp rebuild —target=1.1.3 —arch=x64
Previously, I tried using deasync v0.1.0 on nw.js, it worked properly.
The text was updated successfully, but these errors were encountered: