summaryrefslogtreecommitdiff
path: root/search/fts5/main.js
blob: 70479aaae8a48d1ba707d7732f05d227538b7252 (plain)
1
2
3
4
5
6
7
8
9
10
const initSqlJs = require( 'sql.js-fts5' );

const SQL = initSqlJs({
  locateFile: file => `http://localhost:1313/js/${file}`
});

const db = new SQL.Database();

let sqlstr = "SELECT * FROM posts";
db.run(sqlstr);