nhducit

Results 19 comments of nhducit

But angular gain a lot of performance in syncing-changes test. On my machine it reduces from 3534 to 385

it's much faster for my project after disabling the line below, are there any consequences? this line took 5-6 seconds ``` const project = new Project({ tsConfigFilePath, manipulationSettings }); ```...

``` type tree('a) = | Empty | Node('a, tree('a), tree('a)); ``` I come from JS. what is `'a` mean? Can you explain it?

I mean at least we should mention it, and point to the explanation in further chapter

I'm trying to implement a comparison table like scroll sync example

it seems this lib won't work with React Native. because lib is using `window` object and mouse events https://github.com/reactopt/reactopt/blob/master/src/index.js#L13

What did you do in `handle(message)` function. Check out this example: `https://github.com/jimhigson/oboe.js/blob/master/benchmarking/benchmarkServer.js`. When you want to streaming data from node server to client. Use `res.write` ``` if( i % 2...

@ArtworkAD Done method is called when ever you received an complete object, so it's called many time. Redesign your api response to avoid this. This is a future not a...

@ryan-williams I also have confusing when using oboe with multi-object JSON. How can I know when the request is finish?

I'm using v1.14.2-13-gc97c46b version