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 try to get the baseUrl configuration of Require.js inside a module, but I can't find where it is stored.

define([], function() {
  // Here I'd like to access the `baseUrl` require.js is using
  var baseUrl = requirejs.config().baseUrl;
});

In my case, the baseUrl is set up by Require.js using the data-main attribute of the script file.

I know I can request module to access the config attributes (e.g. define(['module'])), but I can't find how to access the higher level of configuration option.

share|improve this question
You trying to just read the URL? – epascarello Dec 21 '12 at 20:54
Well, the value Require.js use as baseUrl (from where it load script) – Simon Boudrias Dec 21 '12 at 20:55

2 Answers

up vote 2 down vote accepted

Do you want to use toUrl?

define({
    load: function (name, parentRequire, load, config) {
           var fullUrl = parentRequire.toUrl("foo/bar.css");
    }
});

edit:
Starting in require.js 2.1.3, calling toURL return the path without extension. As so, to get the baseUrl:

var baseURL = require.toUrl();
share|improve this answer
Hi, that's almost what I need. Only, toURL always return a ressources file (.js) and I'd need the folder. – Simon Boudrias Dec 21 '12 at 21:01

In RequireJS 2.1.5, you can get the base URL just like epascarello says, except you'll need to pass the empty string.

var baseURL = require.toUrl('');
share|improve this answer

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.