Richard Scarrott

Results 78 comments of Richard Scarrott

https://github.com/richardscarrott/ok-computer/pull/31

https://dev.to/livechat/tree-shaking-for-javascript-library-authors-4lb0

It seems `introspectValidator` is problematic because it does in fact have a side-effect (throws), however it's only relevant if the return value is used so prob a legit case for...

Hi @Haroenv, are there any plans to provide a readable stream API for nodejs, or at least the pagination API so we can create our own stream honouring backpressure? (Our...

Ideally in nodejs we'd have a readable stream so we could pipe to a writable stream, e.g. ```js const fs = require('fs'); const algoliasearch = require('algoliasearch'); const client = algoliasearch('YourApplicationID',...

@phyllisstein it looks like you're actually creating a brand new instance of the webpack compiler for each request which comes in so even if you did get it working it'd...

@threehams I'll aim to look at this shortly -- sorry for the delay

@aflatter apologies for the incredibly slow response -- I've been putting this issue off as in all honesty I'm on the fence re: whether it's worth the added complexity. Personally...

I'm using `react-loadable` in the [60fram.es boilerplate](https://github.com/60frames/react-boilerplate), e.g. https://github.com/60frames/react-boilerplate/blob/master/src/components/index/IndexLoadable.js > NOTE: It uses an older version of `react-loadable`, a more recent version I used on another project required the use...

I've got code splitting working on a private project using Webpack v3 and react-loadable v5, no real problems with those. I've avoided upgrading to React Router v4 on any projects...