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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
You could use an AMD compliant module loader such as RequireJS. |
|||||
|
|
Try object detection:
A danger with this is that |
|||
