npm inpm startStable memory usage
(node:10032) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 removed listeners added. Use emitter.setMaxListeners() to increase limitTested on ubuntu\osx\windows.
Both feathers-vuex 1.0 and 2.0.
In case it helps (vuex-feathers object from memory snapshot):

I had the same issue but is easly fixed with disallowing events on the server:
const { makeServicePlugin, makeAuthPlugin, BaseModel, models, FeathersVuex } = feathersVuex(
feathersClient,
{
serverAlias: 'api', // optional for working with multiple APIs (this is the default value)
idField: '_id', // Must match the id field in your database table/collection
whitelist: ['$regex', '$options'],
enableEvents: process.client
}
)
I was working on a documentation update but the latest version 2.3.1 broke somethings for me...
@guzz sorry to hear that something broke. Could you elaborate a bit on what broke? I thought I was careful enough to not break anything, but with some more detail I can try to be more careful in the future.
Oh, maybe it's this: https://github.com/feathersjs-ecosystem/feathers-vuex/issues/386
;)
Yes, thats it!
I've added this to the 3.0 docs. Will be shipping soon.
Most helpful comment
I had the same issue but is easly fixed with disallowing events on the server:
I was working on a documentation update but the latest version 2.3.1 broke somethings for me...