I worry that if my requiring module changes path I would need to update all required path!! (A thing that would not happen in java)
MyModule.js require('./lib')
Now MyModule changes directory now I need to do
require('../../lib')
Anyway to specify require path as from project root?
require('/lib')
I'm writing this from my mobile sorry if I lack formatting