node/lib/internal
Lance Ball 7a7b8f7e67 repl: Default useGlobal to false in CLI REPL.
Documentation for REPL states that the default value of `useGlobal` is
`false`. It makes no distinction between a REPL that is created
programmatically, and the one a user is dropped into on the command line
by executing `node` with no arguments. This change ensures that the CLI
REPL uses a default value of `false`.

Fixes: https://github.com/nodejs/node/issues/5659
Ref: https://github.com/nodejs/node/issues/6802
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
PR-URL: https://github.com/nodejs/node/pull/5703
2016-07-05 22:36:52 +02:00
..
process process: internal/process/stdio.js cleanup / modernization 2016-06-02 22:36:58 +10:00
streams stream: improve Readable.read() performance 2016-07-05 22:10:22 +02:00
bootstrap_node.js src,lib: v8-inspector support 2016-07-05 22:09:23 +02:00
child_process.js src: refactor require('constants') 2016-07-05 22:09:12 +02:00
cluster.js
freelist.js
linkedlist.js timers: optimize setImmediate() 2016-07-05 22:36:43 +02:00
module.js repl: keep the built-in modules non-enumerable 2016-04-26 12:16:13 -07:00
net.js net: Validate port in createServer().listen() 2016-04-26 12:16:28 -07:00
process.js src: refactor require('constants') 2016-07-05 22:09:12 +02:00
readline.js lib,test: update in preparation for linter update 2016-05-17 08:09:59 -05:00
readme.md
repl.js repl: Default useGlobal to false in CLI REPL. 2016-07-05 22:36:52 +02:00
socket_list.js child_process: refactor self=this in socket_list 2016-03-27 12:51:33 +03:00
util.js crypto,tls: perf improvements for crypto and tls getCiphers 2016-07-05 22:11:27 +02:00
v8_prof_polyfill.js buffer: add .from(), .alloc() and .allocUnsafe() 2016-03-16 08:34:02 -07:00
v8_prof_processor.js tools: enable linting for v8_prof_processor.js 2016-04-26 12:16:22 -07:00

Internal Modules

The modules in lib/internal are intended for internal use in Node.js core only, and are not accessible with require() from user modules. These are subject to change at any time. Reliance on these modules outside of core is not supported in any way.