Starting in Node 0.8, repl.js defines a list of built-in libraries that will be automatically required when you type their name on the REPL:
exports._builtinLibs = ['assert', 'buffer', 'child_process', 'cluster',
'crypto', 'dgram', 'dns', 'events', 'fs', 'http', 'https', 'net',
'os', 'path', 'punycode', 'querystring', 'readline', 'repl',
'string_decoder', 'tls', 'tty', 'url', 'util', 'vm', 'zlib'];
...
if (exports._builtinLibs.indexOf(cmd) !== -1) {
var lib = require(cmd);
if (cmd in self.context && lib !== self.context[cmd]) {
self.outputStream.write('A different "' + cmd +
'" already exists globally\n');
} else {
self.context._ = self.context[cmd] = lib;
self.outputStream.write(self.writer(lib) + '\n');
}
self.displayPrompt();
return;
}
This is specifically a function of repl.js, and does not work at all in any way when writing your own Node.js programs; there, you must specifically require anything you want to use.
.jsscript, you must explicitly require all modules you use. That behavior in the REPL is merely a convenience for that particular environment/use-case. – Dominic Barnes Jul 6 '12 at 14:35console, may feel like an auto-required module, but really are just globals. There a few of these. nodejs.org/api/globals.html – silent__thought Jul 6 '12 at 14:58