🚀 What's New
Added SQLite event store functionality.
Now you can use SQLite event store implementation by installing the package with
npm install @event-driven-io/sqlite
then importing it and using similarly as PostgreSQL event store:
import sqlite3 from 'sqlite3';
import { dbConn, getSQLiteEventStore } from '@event-driven-io/sqlite';
const conn = new sqlite3.Database(':memory:');
const db = dbConn(conn);
const eventStore = getSQLiteEventStore()
It's the first version, so it my have rough edges. Big kudos goes to @davecosec for delivering it! in #173
Besides that
- Added precommit hook to append to stream to SQLite event store by @davecosec in #174
📝 What's Changed
- Fixed browser compatibility test in CI by @oskardudycz in #175
Full Changelog: 0.24.0...0.25.0