Paul Bergeron

Results 27 comments of Paul Bergeron

That change didn't do anything differently than before. I'm using node `v14.2.0` ```elixir iex(6)> System.find_executable("node") "/usr/local/bin/node" ``` And ``` $ /usr/local/bin/node --version v14.2.0 ``` I'm not sure how to triage...

It's like the svelte code isn't being parsed prior to being rendered

After updating my mix.exs to point to master on this repo instead of the released version, I had a copy of `cli.js` and after a `npm install -g minimist` i...

however i think that's because the `cli.js` script does even less pre-processing that the rollup verison

@SlugFiller - trying to reproduce your effort and I have to say that even the code you're afraid about posting would help speed things up significantly, seeing as it's 10...

Grabbing now, thanks @SlugFiller !

I am open to the idea of making such compile time extensions into different versions of sql.js (such as memory-growth, debug, etc). Would that be a good solution here? Can...

Is your goal with a read only version to reduce the size of the javascript? Or protect the data being loaded?

You should issue `PRAGMA query_only = true;` as the first query after the database is loaded, and that will give you the behavior you desire. https://www.sqlite.org/pragma.html#pragma_query_only

Right, you will need to read it, I presume using `sql.js`? You will need to either issue an `INSERT` statements to insert the data, or you are reading the raw...