futpib

Results 50 issues of futpib

Similar to `createContext`, this saves users from having to come up and write same ids in multiple places (this is like having a global namespace)

Whenever people write `catch (err)` or `.catch(err => ...)` they expect `err` to be `instanceof Error` or at least to have a somewhat similar interface to `Error` 🦆. I suggest...

`fetch` option is called twice, once from [`computeObject`](https://github.com/RickWong/fetch-plus/blob/12485d7/packages/fetch-plus/src/index.js#L111) and once from the actual request call. ```js require('fetch-plus').createClient('', { fetch: () => { console.log('called'); return { ok: true }; } }).get('');...

Currently one can't modify request options asynchronously in middleware. I think all of the following signatures should be supported as middlewares: ```Request → Response → Response``` ```Request → Response →...

I want to select all items that have been successfully processed by honeydew, I guessed by looking at the source code that I can use `where([x], is_nil(x.honeydew_whatever_lock))` to do this,...

Does not seem possible right now (or am I wrong?). I wish a container for multiple windows was provided.

Motivations: * UMD - kinda obvious * * Needed to use this plugin in CommonJS environment * package.json * * Browserify can not load a module without package.json (I expect...

This allows users to customize ordering algorithm. May help address #189, #201 and other

This allow overriding edge line (`createEdgeLine`) without overriding the whole edge rendering (`createEdge`).