Registry / database / croswil_tlite

croswil_tlite

JSON →
library1.2.47jsnpmunverified

SQLite + FTS5 command-line interface utility for creating, managing, and querying SQLite databases directly from the terminal. Version 1.2.47 provides features such as creating SQLite files, creating tables, importing/exporting data, and executing various operations via CLI. It supports FTS5 full-text search. The tool is designed for lightweight database management without a GUI. Release cadence is irregular, with occasional updates.

npm install croswil_tlite
INSTALL
IMPORT
SIG · CROSWIL_TLITE
C
croswil_tlite
databasejavascriptv1.2.47
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

tlite (CLI)
npx tlite
npm install -g tlite (globally is fine but npx avoids global install)
This is a CLI tool, not a library. Use via command line.

Shows how to create a SQLite database, create a table, import CSV data, and execute a query using the tlite CLI.

npx tlite create mydb.sqlite npx tlite table mydb.sqlite create users id INT, name TEXT, email TEXT npx tlite import mydb.sqlite users users.csv npx tlite query mydb.sqlite "SELECT * FROM users WHERE name LIKE '%John%'"
Debug
Known issues
gotchanpx may not resolve the latest version; use npx tlite@<version> to pin
fix
Use npx tlite@1.2.47 to ensure consistent behavior.
affects: >=1.0
breakingFTS5 enabled by default; ensure your SQLite version supports it
fix
Use a SQLite build with FTS5 enabled, or use system SQLite.
affects: >=1.0
Errors
Common errors & fixes
npx: command not found
Node.js/npm not installed or npx not available
fix
Install Node.js (includes npx) from https://nodejs.org
Error: near line 1: no such module: fts5
SQLite library compiled without FTS5 support
fix
Use a build that includes FTS5 or skip FTS5 features.
Upgrade
Version history
1.2.47latest on npm
Audit
Dependencies

No dependency data recorded yet.

Agent activity
8 hits · last 30 days
node
6
OpenAI (training)
1
Resources
croswil_tlite — npm install croswil_tlite · libregistry