You certainly could do this. It would successfully avoid modifying the global require.paths array which can pose problems at run time, and shouldn't have an issues with future releases.
You should be able to simply set up a model that you simple require into your current app. According to your example x.js should contain.
var relative = 'y/';
exports.xrequire = function(path) {
console.log("requiring " + relative + path);
return require(relative+path);
};
Then you can successfully use your custom require.
var xrequire = require('x.js'),
hello = xrequire('hello.js');
I don't advise this, but if you wanted to be really sneaky, you could override the require function.
var require = xrequire;
I would definitely throughly document this inside your module if you plan to require :D this functionality, but it certainly does work.
EDIT:
Well you could test for the file and fallback to require if it doesn't exist.
var relative = 'y/';
exports.xrequire = function(path) {
var ret;
try{
ret = require(relative+path);
console.log("requiring " + relative + path);
}catch(e){
console.log("requiring " + path);
ret = require(path);
}
return ret;
};
I think you could try adding process.cwd to the beginning of the require path to force looking in the correct directory first. In all honesty this would confuse most developers. I would advise just defining a namespace for your app and creating a special require function that retrieves only that namespaced apps special functions.
x/hello.js, noty/hello.js— I'd like it to work the same as the standard require. – luxun Jul 11 '11 at 18:20