How do I change default directory in node.js? (Windows)

When I try to tun my project on node, I have to write the full path for my javascript file because the default value node uses is C:\Users\MyUser and I refuse to use it.

I've been trying to find how to change this but have not found it anywhere. I even tried searching the directory manually for it and had no luck finding it.

Could anyone point me on how to fix this annoying little problem I have?

Node's "default" directory is the Windows home directory. Note, you can change node's home directory using process.chdir(directory)