I'm new to node and i'm making an email client using gmail api. I'm using mail-listener2 to get new mail notification. It shows imapConnected but i don't get any notification on new mail. Can anyone guide me or point me to right direction.
Vivek, you're not alone, I had experienced the same problem, see alternative here:
if you're new to node remember to declare your dependencies in package.json at the root of your project and run npm install
example package.json:
{
"name": "exampleAppName",
"version": "0.0.1",
"dependencies": {
"mail-notifier": "0.2.3"
}
}