I am trying to require a file relatively and mysteriously the following is happening

This works well which points to /Users/marcos/Desktop/Taper/lib/utils.js

myPath = "/Users/marcos/Desktop/Taper/lib/./utils";
require(myPath);

This doesn't but it should point to exactly the same file:

require.paths.unshift("/Users/marcos/Desktop/Taper/lib")
require("./utils"); //Doesn't work with './'
require("utils"); //Works Fine

Anyone knows why I can't still use ./ in this case for loading the path since

require("path").resolve("/Users/marcos/Desktop/Taper/lib", "./utils")

results in:

"/Users/marcos/Desktop/Taper/lib/utils"

anyway?

Thanks in advance

link|improve this question

Note that the docs say please avoid modifying require.paths – Martijn Mar 22 '11 at 13:31
Thanks Martjin I agree, but the thing is that this is for a simple text mate bundle which reads STDIN and add the current process.cwd() to the require path, so users will be able to run node code quickly, without have to change their current require paths. – zanona Mar 22 '11 at 13:37
feedback

2 Answers

up vote 4 down vote accepted

From the documentation:

In node, require.paths is an array of strings that represent paths to be searched for modules when they are not prefixed with '/', './', or '../'.

(emphasis mine)

link|improve this answer
Ah ok, now that makes sense :) so, if some of the strings above are mentioned it simply ignores the paths section. So I guess there's no way to achieve that then unfortunately, thanks Martjin – zanona Mar 22 '11 at 13:47
Perhaps a good solution for this would be find and replace these prefixes from process.stdin and append the process.cwd() to it :) might work – zanona Mar 22 '11 at 13:57
@ludicco: isn’t it possible for your users to put utils.js in a node_modules/ directory somewhere up the path? – Martijn Mar 22 '11 at 16:48
feedback

You can pass that using NODE_PATH

Example:

NODE_PATH=`pwd` node app.js
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.