Mike Davies
Mike Davies
Code sample that reproduces the error: ``` javascript var sqlite = require('sqlite'); var db = new sqlite.Database(); db.open('/tmp/test.db', function(error) { if (error) { console.log(error); } else { console.log("Ready!"); } });...
I've been tinkering with this for a while. Started with a fresh slate and checked out the latest version of this project from github. The example code in the README...
> Would be nice to have api usage example in README.md I've added the example demo-game component from this PR description to the README, and added `ref` to the props...