I usually call my modules this way:
var synth = require('./module/module');
However I'm studying some codes and I noticed that the modules are called this way:
var synth = require('this-is-module');
How can I call my modules this way above, without having to keep finding folders and so on.