Skip to content

Tag: node.js

Using new collections for each user

I am building an Expense Tracking app using Node.js where all the Income and Costs should get saved in a database. My idea is to create a new collection for each registered user and save all their income/cost actions in that collection. The things i would like to consider before writing it are: how do i name …

Eventlistener function is undefined?

When a button is clicked I want the event listener to be removed. As shown in the code above, removeAllListeners works, however, I do not want all listeners to be removed. I believe I can use removeListener(‘message’, function) but if I try to put removeListener(‘message’, startMe()) I…