hoogw

Results 41 comments of hoogw

This is my working example code `// must install load dotenv to be able to use .env file require('dotenv').config(); var fs = require('fs'); // Listen on a specific host via...

my working code here [https://stackoverflow.com/questions/60066942/cors-anywhere-how-to-add-https-support/60067028#60067028](https://stackoverflow.com/questions/60066942/cors-anywhere-how-to-add-https-support/60067028#60067028)

@olivernn very good explain, that make sense to me. I would do some experiment to testify the cause.

I am kind of find a solution to my own question here: this is 2 of my working example 👍 you can turn on/off auto suggest by click the switch...

I guess, not verified, the slowness of oboe, is caused by blob, Blob/FileReader , blob builder etc.... To make it fast, need to use `var string = new TextDecoder(encoding).decode(uint8array);` there...

I have same error, in WEB worker only. In browser main stread, no such issue. I just comment out that line windows.timeout..... although, no more error, but oboe stop working....

It is this window not defined in web worker, please fix the bug. `// To keep a consistent interface with Node, we can't emit an event here. // Node's streaming...

Before you fix the bug in 2.15, windows.setTimeout(). Should be fairly easy fix ! In web worker, window object is undefined, cause error, you may want to re-write windows.setTimeout to...

oboe use xhr, should have abort function, like xhr.abort ... or fetch abort etc... 90% of my mapping web page, need to abort ajax, abort fetch etc... because otherwise, when...

I have a idea of gzip/zip the raw JSON, then stream the zipped json. 300MB.json=50MB.zip, 100MB.json=20MB.zip, It will make 5 times faster.