A minimal SQLite extension package that demonstrates the sqlite-dist build and distribution system. Version 0.1.0-alpha.79 is the latest alpha release. It provides a single function `hello()` that returns a greeting string, serving primarily as a test and learning tool for building SQLite extensions with sqlite-dist. Unlike full-featured SQLite extensions (e.g., sqlean, sqlpkg), this package is intentionally minimal, focusing on illustrating the packaging and loading process. Releases are infrequent, as development is tied to sqlite-dist improvements.
npm install sqlite-helloNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Load the hello extension into sqlite-dist, then call the hello function.
Update sqlite-dist to >=0.2.0.
Use 'helloAsync()' for async operations.
Use `import { hello } from 'sqlite-hello'` instead of `import hello from 'sqlite-hello'`.Update extension functions to accept optional options object.
Use only with sqlite-dist runtime.
Run `npm install sqlite-hello` or add it to your package.json.
Update to >=0.1.0 or use `import hello from 'sqlite-hello'`.
Use sqlite-dist to load the extension: `await loadExtension(db, hello)`.
Use named import: `import { hello } from 'sqlite-hello'`.