Rekuire
'rekuire' is basically node's 'require' without the relative paths
installation
to install, type
npm install rekuire
or add it to your package.json
as a dependency.
so how to use it?
instead of doing this:
var MyModule = require('../../../MyModule.js');
<-- yuck!
why not do this:
var rek = require('rekuire');
var myModule = rek('MyModule');
var myCoffee = rek('MyCoffee.coffee');
var myJson = rek('myJson.json');
if you want to resolve only the file location, for example, when you want to use proxyquire.
use:
var mypath = rek.path('MyModule');
// mypath = 'lib/classes/MyModule.js'
for more examples, I recommand you to checkout the spec file :)
- - -
what is it good for?
it saves you TONS of time refactoring your code, and making it easily reusable.
plus, it makes you code more readable = better!
- - -
what does it do?
when 'rekuire' is first loaded to the project, it scans the source files locations,
so when you need them they are right there to use!
no relative paths are needed! yeahy!
- - -
issues
if you are having any problems, requests or critisizm, don't hesitate to open an issue, here
- - -
Development
To test, run: npm test