Skip to content

0.25.0

Latest
Compare
Choose a tag to compare
@oskardudycz oskardudycz released this 16 Jan 12:02
· 1 commit to main since this release

🚀 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

Full Changelog: 0.24.0...0.25.0