SQLite database plugin for Yumeri web server, version 1.1.5 (latest). Provides seamless integration of SQLite databases into Yumeri applications with async/await support and TypeScript types. It is designed exclusively for Yumeri v3 alpha and requires the Yumeri framework to function. The plugin offers a simple API for creating, reading, updating, and deleting records, leveraging SQLite as a lightweight embedded database. It is maintained as part of the Yumeri ecosystem with regular updates.
npm install yumeri-plugin-sqliteNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Initialize SQLite database plugin, create table, and query data.
Upgrade Yumeri to v3 alpha or later.
Call app.plugin('sqlite') before instantiating Database.Use connectionString: 'sqlite://data.db'
Use multiple Yumeri plugin instances for multiple databases.
Ensure app.plugin('sqlite') is called and await any async setup.Install optional peer dependency: npm install sqlite3
Use import { Database } from 'yumeri-plugin-sqlite' and import other symbols as named exports.