Require local files relative to the root of your node project.
npm install includeRequire local files relative to the path provided at require.
npm install include
``js`
var include = require('include')(__dirname);
#### without include
`js`
var foo = require('../../../path/to/foo');
#### with include
`js``
var foo = include('path/to/foo');