Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I decided to use RequireJS as my module loader in NodeJS.

Unfortunately, the modules I define don't have access to some of the "global" objects that would be be available if the modules were loaded using the CommonJS method. This includes the objects that are located in the module scope, such as __dirname and __filename.

Is there a relatively simple approach to using these objects in the RequireJS modules?

share|improve this question

1 Answer

up vote 1 down vote accepted

This is covered on the requirejs issues site on github (https://github.com/jrburke/requirejs/issues/89) and the workaround they seem to suggest is to use module.uri instead.

share|improve this answer
1  
Thanks, here's the relevant content from that post: <blockquote> jrburke commented April 09, 2011 </blockquote> b> If you do the following, you should be able to get the path and dir> for the current module: {{{ define(['module', 'path'], function (module, path) { console.log("module's path is: " + module.uri); console.log("module's dir is: " + path.dirname(module.uri)); }); }}} – schutterp Jan 27 '12 at 16:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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