Dave Irvine

Results 14 issues of Dave Irvine

If my command is specified like this: ``` "test": "exit 0", ``` it's possible to run this with npm: ``` 12:53 $ npm test > [email protected] test > exit 0...

Is it Unit-er or Unite-r?

``` var php = require('uniter').createEngine('PHP'); php.getStdout().on('data', function (text) { console.log(text); }); php.getStderr().on('data', function (text) { console.error(text); }); php.execute('

If I have an Action that returns a Promise which may either resolve or reject (redux-form requires this for form submission), how can I write a test that handles the...

Hi! Thanks for the library, I've found it really useful, but I don't think your install instructions are quite correct. You say that to use with webpack, all your need...

Hi, I can't find any documentation that tells me how to reply with an error when using the hapi middleware. Ideally I would use Boom, as this is what I...

For almost all of the keywords you have links to YouTube clips of the real audio. While it would certainly take longer during compilation, would it not be possible to...

### Is there an existing issue for this? - [X] I have searched the existing issues ### Community Note * Please vote on this issue by adding a :thumbsup: [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/)...

service/service-bus
v/3.x

Hi, Just stumbled across this issue where I want to provide children to the Picker by map()'ing an array to Picker.Items ``` const alphabet = 'abcdefghijklmnopqrstuvwxyz'.split(''); { alphabet.map((letter) => {...

Hi! This looks like an interesting approach to form validation with hooks. I read through your article and it all makes sense so I'd like to try and use your...