Add support for postgres.js library
import { migrate, createProvider } from 'evtstore/providers/postgres
- Add
continueOnError
to Event Handler options- Do not stop processing events if an event handler throws. The error will be passed to
Provider.onError
and the event handler will move on to the next event(s)
- Do not stop processing events if an event handler throws. The error will be passed to
- Added changelog :)
- Add
tailStream
andalwaysTailStream
options when creating event handlers:tailStream
: When first starting, the handler will begin at the end of the stream(s) historyalwaysTailStream
: When starting, the handler will ALWAYS begin at the end of the stream(s) history