promised-io icon indicating copy to clipboard operation
promised-io copied to clipboard

Promise-based IO for JavaScript.

Results 25 promised-io issues
Sort by recently updated
recently updated
newest added

I believe that the fix for all here: https://github.com/kriszyp/promised-io/commit/0a3d16dcde0516489d9a8651cd42b5668a9b7b74 just needs to be applied to allKeys, too.

I get this [webpack error](https://github.com/webpack/webpack/issues/138) when trying to use `promised-io` via ES6 and babel like: ``` import fs from 'promised-io/fs'; ... /Users/kumar/dev/web-ext/dist/webpack:/(webpack)/buildin/amd-define.js:1 module.exports = function() { throw new Error("define cannot...

I've found that using promised-io alongside the newrelic agent raises a problem. A minimal app that shows the crash is as follows: ``` var newrelic = require('newrelic'); var fs =...

module.js:338 throw err; ^ Error: Cannot find module 'promised-io/lib/promise' at Function.Module._resolveFilename (module.js:336:15) at Function.Module._load (module.js:286:25) at Module.require (module.js:365:17) at require (module.js:384:17) at Object. (C:\Users\C1542295\Documents\NodeJS Projects\dating-website\node_modules\couchdb\lib\couchdb.js:2:20) at Module._compile (module.js:434:26) at Object.Module._extensions..js...

`exists`'s callback signature is just `(value)` instead of `(err, value)` so normally if the file exists it would be interpreted as an error because the first argument is true. The...

Could you add support for ES6, e.g., Promise.prototype.catch as per http://www.ecma-international.org/ecma-262/6.0/#sec-promise.prototype.catch ?

When automatically starting a node script that uses promised-io during server start with an upstart script I'm getting the following error: ``` node_modules/promised-io/promise.js:242 throw error; ^ Error: Command failed: at...

i've got a bunch of promised-io stuff i wrote a while ago but never bothered getting it all together...here's a start

Hi, I'm currently writing a promised-based cache. However, when calling 'save' on this cache, I can't know which are the resolved promises. I have two choices : - Waiting to...

Hello is it possible to break out a then chain half way through? I tried reject it just moves on to the next then call. I also tried cancel this...