I have a script I am requiring from a node.js script, which I want to keep javascript engine independent.

So, for example, I want to do:

exports.x = y;

only if it's running under node.js. how can I perform this test?

Edit: When posting this question, I didn't know the node.js modules feature is based on commonjs.

For the specific example I gave a more accurate question would've been:

How can a script tell whether it has been required as a commonjs module?

link|improve this question

2  
I've no idea why you are trying to do this, but as a rule of thumb you should be using feature detection rather then engine detection. quirksmode.org/js/support.html – Quentin Nov 19 '10 at 11:44
feedback

8 Answers

up vote 7 down vote accepted

This is how the Underscore.js library does it:

Edit: to your updated question:

(function () {

    // Establish the root object, `window` in the browser, or `global` on the server.
    var root = this; 

    // Create a refeence to this
    var _ = new Object();

    var isNode = false;

    // Export the Underscore object for **CommonJS**, with backwards-compatibility
    // for the old `require()` API. If we're not in CommonJS, add `_` to the
    // global object.
    if (typeof module !== 'undefined' && module.exports) {
            module.exports = _;
            root._ = _;
            isNode = true;
    } else {
            root._ = _;
    }
})();

Example here retains the Module pattern.

link|improve this answer
feedback

Well there's no reliable way to detect running in Node.js since every website could easily declare the same variables, yet, since there's no window object in Node.js by default you can go the other way around and check whether you're running inside a Browser.

This is what I use for libs that should work both in a Browser and under Node.js:

if (typeof window === 'undefined') {
    exports.foo = {};

} else {
    window.foo = {};
}

It might still explode in case that window is defined in Node.js but there's no good reason for someone do this, since you would explicitly need to leave out var or set the property on the global object.

EDIT

For detecting whether your script has been required as a CommonJS module, that's again not easy. Only thing commonJS specifies is that A: The modules will be included via a call to the function require and B: The modules exports things via properties on the exports object. Now how that is implement is left to the underlying system. Node.js wraps the modules content in an anonymous funciton.

function (exports, require, module, __filename, __dirname) { 

See: https://github.com/ry/node/blob/master/src/node.js#L325

But don't go there by trying to detect that via some crazy arguments.callee.toString() stuff, instead just use my example code above which checks for the Browser, Node.js is a way cleaner environment so it's unlikely that window will be declared there.

link|improve this answer
About "Node.js is a way cleaner environment so it's unlikely that window will be declared there.": well, I just came here looking for a way to find out whether my script was running in a browser emulated by node.js + JSDOM or in a plain browser... The reason is that I have an infinite loop using setTimeout to check the URL location, which is fine in a browser, but keeps the node.js script running forever... So there might be a window in a node.js script after all :) – Eric Bréchemier Feb 1 '11 at 18:18
@Eric I highly doubt it will be there in the global scope, so unless you import something as window in the first line of your module you should not have any problems. You could also run an anonymous function and check the [[Class]] of this inside it (works only in non-strict mode) See "Class" under: bonsaiden.github.com/JavaScript-Garden/#typeof – Ivo Wetzel Feb 1 '11 at 18:28
My issue differs slightly from the OP's: I am not requiring the script, it is loaded by JSDOM with the emulated window as global context... It is still run by node.js + V8, just in a different context than usual modules. – Eric Bréchemier Feb 1 '11 at 20:01
@Eric Hm, you should still be able to employ the this trick though, since JSDOM has no way to alter the way JS works in that regard. – Ivo Wetzel Feb 1 '11 at 20:54
Probably... I went another direction: 1) detect support for onhashchange ("onhashchange" in window) to avoid creating the infinite loop 2) simulate support by setting the onhashchange property on emulated window in main node.js script. – Eric Bréchemier Feb 1 '11 at 22:00
show 1 more comment
feedback

How can a script tell whether it has been required as a commonjs module?

Related: to check whether it has been required as a module vs run directly in node, you can check require.main !== module. http://nodejs.org/docs/latest/api/modules.html#accessing_the_main_module

link|improve this answer
This was useful to me, thanks. – Adam Mar 30 at 16:29
feedback

Edit: Regarding your updated question: "How can a script tell whether it has been required as a commonjs module?" I don't think it can. You can check whether exports is an object (if (typeof exports === "object")), since the spec requires that it be provided to modules, but all that tells you is that ... exports is an object. :-)


Original answer:

I'm sure there's some NodeJS-specific symbol (EventEmitter, perhaps no, you have to use require to get the events module; see below) that you could check for, but as David said, ideally you're better off detecting the feature (rather than environment) if it makes any sense to do so.

Update: Perhaps something like:

if (typeof require === "function"
    && typeof Buffer === "function"
    && typeof Buffer.byteLength === "function"
    && typeof Buffer.prototype !== "undefined"
    && typeof Buffer.prototype.write === "function") {

But that just tells you that you're in an environment with require and something very, very much like NodeJS's Buffer. :-)

link|improve this answer
I can still break that by setting up all that stuff in a Website... that's just overkill ;) Checking for being in a Browser is easier since the Node environment is cleaner. – Ivo Wetzel Nov 19 '10 at 12:10
@Ivo: Yes, see my last sentence. I can just as easily break your check by defining a window variable within a NodeJS application. :-) – T.J. Crowder Nov 19 '10 at 12:15
@T.J Crowder Still Node.js is a cleaner environment it's stupid to define a window global there, and I haven't encountered something like that yet. Also you have full control over your Node.js code, but not over the users Browser. – Ivo Wetzel Nov 19 '10 at 12:19
@Ivo: I wouldn't be at all surprised if someone defined window in a NodeJS module, so they could include code that relied on window being the global object and didn't want to modify that code. I wouldn't do it, you wouldn't, but I bet someone has. :-) Or they've just used window to mean something else entirely. – T.J. Crowder Nov 19 '10 at 12:21
1  
@Ivo: yuiblog.com/blog/2010/04/09/… is one reason why the window object may be defined in node.js – slebetman Nov 19 '10 at 14:35
show 2 more comments
feedback

Here's my variation on what's above:

(function(publish) {
    "use strict";

    function House(no) {
        this.no = no;
    };

    House.prototype.toString = function() {
        return "House #"+this.no;
    };

    publish(House);

})((typeof module == 'undefined' || (typeof window != 'undefined' && this == window))
    ? function(a) {this["House"] = a;}
    : function(a) {module.exports = a;});

To use it, you modify the "House" on the second last line to be whatever you want the name of the module to be in the browser and publish whatever you want the value of the module to be (usually a constructor or an object literal).

In browsers the global object is window, and it has a reference to itself (there's a window.window which is == window). It seems to me that this is unlikely to occur unless you're in a browser or in an environment that wants you to believe you're in a browser. In all other cases, if there is a global 'module' variable declared, it uses that otherwise it uses the global object.

link|improve this answer
feedback

One approach would be to check if the 'this' variable is the 'window' variable.

(typeof window !== 'undefined' && this === window)

I would say this is a bit safer than just assuming that because a global variable name is defined that it's the object you want, because 'this' cannot be reassigned.

However, you could assign the 'window' variable name to be equal to 'global' and trick the check.

window = global
this === window //returns True

But that's a much more specific action than simply defining a variable name to exist, but, it still happens. For example; Chrome's new tab page has 'global' defined as 'window' for some reason.

To be extra safe, you can check the type of 'window' after making sure it exists and is 'this', making the full check to be:

typeof window !== 'undefined' && 
this === window && 
window.toString() === '[object DOMWindow]'

This would tell you that 'window' is defined, it is the current scope, and it has the right object name.

This approach does have a few fallbacks though. It has to be made in global scope so that 'this' is not local to the closure you are in. Also, while 'this' is defined in the node console, it is an empty object when you execute a script, so the window check has to be made instead. And, strict mode defines that 'this' in the global scope is undefined, so this cannot work in strict mode.

However, it is good in that it doesn't assume any reserved keywords, and cannot be spoofed, because you cannot alter 'this' as long as it's called in the right place.

link|improve this answer
feedback

Take the source of node.js and change it to define a variable like runningOnNodeJS. Check for that variable in your code.

If you can't have your own private version of node.js, open a feature request in the project. Ask that they define a variable which gives you the version of node.js that you're running in. Then check for that variable.

link|improve this answer
That again doesn't solve his (basically unsolvable) problem, I can again just create such a variable in the Browser. Better way would be to prevent scripts from creating a window global, guess I gonna file a feature request on that one. – Ivo Wetzel Nov 19 '10 at 12:52
There you go: github.com/ry/node/issues/issue/437 – Ivo Wetzel Nov 19 '10 at 13:04
@Ivo: That's a bad idea that would break code that uses jsdom (github.com/tmpvar/jsdom) to do server side dom manipulation using familiar libraries like YUI and jQuery. And there are code currently in production that does this. – slebetman Nov 19 '10 at 14:39
@slebetman No it will not break jsdom. I'm speaking of global, like in no var statement global, the example code there uses the var statement, people who just leak it into the global namespace, well they don't get the concept of self-contained modules then – Ivo Wetzel Nov 19 '10 at 15:03
feedback

What about using the process object and checking execPath for node?

process.execPath

This is the absolute pathname of the executable that started the process.

Example:

/usr/local/bin/node

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.