James Gillmore

Results 61 issues of James Gillmore

for tests, I'm thinking of using this package to mock client-side fetch calls to direct calls to express. Is there a recipe for that?

I'm currently using: https://github.com/oblador/react-native-image-progress and I really like your package, and the way you coded it. I wanna make your package optionally offer react-native-image-progress so you can show more than...

I imagine something like? ``` new InstagramPosts({ username: 'steveaoki', limit: 20, }).then((posts) => { posts.length === 20; }); ``` and it seems profiles load 12 posts now. So perhaps by...

E.g if we have: ***FirstComponent.js*** ``` type FirstComponentProps = { foo: number, bar: number, } function FirstComponent(props: FirstComponentProps): React.Element { return {props.foo + props.bar} } export default connect(({bar}) => ({bar}))(FirstComponent)...

I would like to run `workbench.action.git.push` after `workbench.action.git.input-commit` is completed, but git push is called immediately after the commit input appears and before I fill it out and submit it....

Lately I've been doing a lot of performance testing with `Perf.start/stop` etc. React Native Parallax takes the most rendering time. That's especially weird for me given I do almost nothing...

Is this purely web or is there any hope for making native (specifically React Native) application demos with it? What's a birds-eye-overview of what would need to be done to...

I'm worried that the React Native APIs to hide the status bar can be overriden by the OS. This is particularly a problem for this reason: if you design your...