Allows users to avoid relative path dots hell.
Detect project root by looking for first existing node_modules folder from list in require.main.paths
npm install --save scbd/rootquire#version
var User = require('rootquire')('models/user');var User = require('../../../../../models/user');require('rootquire').debug();Similar to Undot. Undot is relative to start main module https://github.com/gsanches/undot