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 using 0.3.1-pre Node.js

Doing this:

typeof global.parseInt

results in

'undefined'

However when pressing [Tab] in the console after typing 'global.' gives a list of functions, including parseInt.

So is parseInt a member of the global namespace or not?

share|improve this question
Why don't you simply do typeof parseInt? This works for me. – elusive Nov 9 '10 at 11:30
Yes it does. I just want to know what's the reason for this idiosyncrasy. – Art Nov 9 '10 at 11:53

3 Answers

up vote 8 down vote accepted

Apparently, the global object isn't the global object as window is in the browser. It's (according to micheil in #nodejs @ freenode) really only used internally. Something about global closures and whatnot.

parseInt and setTimeout and all those buddies are globals on their own. Not part of any visible global object.

share|improve this answer
Does it mean that decorating the global object does not really make it accessible out of the module, or that it would be accessible but only it as a property of the global object in other modules? – Radagast the Brown Jan 11 '12 at 9:52
2  
Whatever you do to the global object is nullified at any time. Whenever the internal node process does something that requires use of it, it resets. So it's not reliable (at all) for any persistant globals. In fact, the only place I've seen it work for more than half a second is in the node-repl (command line). – Tor Valamo Jan 11 '12 at 10:14
thanks for the comment. that is so sad :(, especially when many people in many places direct you to the global object – Radagast the Brown Jan 11 '12 at 13:57
1  
I see they updated the documentation for global (there was always a bit of confusion as to what it actually did). It now does contain the "global" variables you set (outside any function scope), but there is a new global object for every module, so it is not cross module. var a = 1 in index.js will be available as global.a only in index.js. – Tor Valamo Jan 11 '12 at 20:11

Defining variable in app.js without var, just like myvar='someval' makes it visible inside every .js in your project

share|improve this answer
Is that a direct answer to the question? I don't think so. – itsbruce Nov 22 '12 at 12:18
It is an answer to the possible intentions behind the question or intentions of others landing here. Like any answer should be. Thanks bFunc. – zupa Feb 7 at 16:22

As of NodeJS v0.8.14 global seems to work across modules like the window object does in the browser.

Test:

a.js:

a1 = console.log;  // Will be accessed from b.js
global.a2 = console.log;  // Will be accessed from b.js

require('./b.js');

b1('a: b1');
b2('a: b2');
global.b1('a: global.b1');
global.b2('a: global.b2');

b.js:

a1('b: a1');
a2('b: a2');
global.a1('b: global.a1');
global.a2('b: global.a2');

b1 = console.log;  // Will be accessed from a.js
global.b2 = console.log;  // Will be accessed from a.js

Running a.js outputs:

b: a1
b: a2
b: global.a1
b: global.a2
a: b1
a: b2
a: global.b1
a: global.b2
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.