This package is an event store adapter used to store events in MySQL 8.0.
eventsTableName
- the name of a table used to store events....connectionSettings
- see Connection Settings for more information.
import createAdapter from '@resolve-js/eventstore-mysql'
const adapter = createAdapter({
host: 'localhost',
port: 3306,
user: 'customUser',
password: 'customPassword',
database: 'customDatabaseName',
eventsTableName: 'customTableName',
})