How to find which Node.js file is running now

I forgot what node.js file now running on port 3000. How can I know it? I executed the command

lsof -c node

but it did not help me find out the name of the file. (Linux OS)

ps auxww | grep node should do the trick.