Projections allow us to project data from an event store to other types of stores for optimized querying (e.g. elasticsearch).
Defining a MetaStore
DDES needs somewhere to store projection progress. A MetaStore is a basic key/value store and can be used to store metadata for for multiple projections.
const metaStore = new AwsMetaStore({ tableName: 'ddes-meta', })
Like with an EventStore, you need to run setup() before using the MetaStore.