├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── examples └── vt.db ├── main.js ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .vscode 3 | yarn-error.log 4 | vt.db-* -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assafmo/SQLiteProxy/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assafmo/SQLiteProxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assafmo/SQLiteProxy/HEAD/README.md -------------------------------------------------------------------------------- /examples/vt.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assafmo/SQLiteProxy/HEAD/examples/vt.db -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assafmo/SQLiteProxy/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assafmo/SQLiteProxy/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assafmo/SQLiteProxy/HEAD/yarn.lock --------------------------------------------------------------------------------