first commit

This commit is contained in:
2026-01-13 22:55:46 +01:00
parent 3a3b0b046d
commit 2faf2dd8dc
31 changed files with 8490 additions and 0 deletions

5
server/inspect-db.js Normal file
View File

@@ -0,0 +1,5 @@
const duckdb = require('duckdb');
const db = new duckdb.Database(':memory:');
const con = db.connect();
console.log('Connection methods:', Object.keys(Object.getPrototypeOf(con)));
process.exit(0);