deasync icon indicating copy to clipboard operation
deasync copied to clipboard

Turns async function into sync via JavaScript wrapper of Node event loop

Results 67 deasync issues
Sort by recently updated
recently updated
newest added

Hi, I am using deasync module in my jasmine test cases. Actually in my beforeall method of jasmine, I have to synchronously call some async methods in the same order...

This has got to be something simple and stupid that I'm doing or assuming, but using the following code for a test, I always get 'hello' as the result of...

I have a 'var doGetBalance = deasync(web3.eth.getBalance);' in effect. Inside a 'forEach' loop, getting addresses from an array, I have a call ' var acctBal = doGetBalance(address);' This works against...

I have installed `npm forever` plugin to restart the server. But somehow its keep restarting every hour with following error: ``` FATAL ERROR: v8::ToLocalChecked Empty MaybeLocal. 1: node::Abort() [node] 2:...

I'm having this issue when do something like this in linux: `const deasync = require('deasync'); class ChunkStream { forEach(func) { let done = false; request.post(httpOptions).on('response', function (response) { response.on('data', function...

I'm getting this error and I am not sure how to fix it. ``` node --version v9.7.1 yarn --version 1.3.2 python --version Python 2.7.10 ``` ``` $ yarn yarn install...

npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@^1.0.0 (node_modules\chokidar\node_modules\fsevents): npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"}) npm WARN enoent ENOENT: no such file or...

Using deasync with redis and socket.io Under part of deasync ``` db.select = deasync(db.select); db.set = deasync(db.set); db.get = deasync(db.get); db.del = deasync(db.del); ``` With many connections the fault message...

I tried to use deasync in my node app that runs in AWS lambda. It turned out generating a lot of errors that seem to relate to memory management or...

On attempting to use deasync w/ [email protected], node v4.4.7 on Linux Mint 18, it throws an error: ``` (bindings.js:91) Uncaught Error: Could not locate the bindings file. Tried: → /(path...