Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am writting a file that is going to be usable either in the browser and on node.js. To use a library, I could import it using _ = require('underscore.js'); main(); on node, and $.getScript('underscore.js',function(){ main(); }); on the browser. What is the right way to include a file that will work on both environments?

share|improve this question

2 Answers

You could use an AMD compliant module loader such as RequireJS.

http://requirejs.org/

share|improve this answer
Could you detail exactly how you use RequireJS for having the same include code that works for both environments? – Viclib Nov 16 '12 at 0:18
@Dokkat It is all in the require.js documentation. Check the website for usage examples etc. – dqhendricks Nov 16 '12 at 0:20

Try object detection:

if($ && $.getScript){
    $.getScript('underscore.js',function(){ main(); });
}else if(require){
    _ = require('underscore.js');
}else{
    /* output: Could not load library 'underscore.js'. */
}

A danger with this is that require may be defined but means something else.

share|improve this answer
That's what I'm doing, but I thought it was a little undelicate. – Viclib Nov 16 '12 at 0:19
dqhendricks' suggestion is probably better, I saw it appear just as I posted this. (: – Kninnug Nov 16 '12 at 0:22
I hate require.js's documentation, through. – Viclib Nov 16 '12 at 0:29

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.