node/lib/internal
Anna Henningsen 07c9f981d6 repl: keep the built-in modules non-enumerable
Make sure that the built-in modules in the repl stay non-enumerable.
Previously, they would pop up as enumerable properties of the global
object after having been accessed for the first time.

PR-URL: https://github.com/nodejs/node/pull/6207
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2016-04-20 16:52:26 -07:00
..
process process: fix incorrect usage of assert.fail() 2016-04-20 16:24:21 -07:00
streams streams: refactor LazyTransform to internal/ 2015-09-14 19:58:04 -07:00
bootstrap_node.js node: make builtin libs available for --eval 2016-04-20 16:52:26 -07:00
child_process.js child_process: add keepOpen option to send() 2016-03-08 15:54:50 -05:00
cluster.js cluster: remove handles when disconnecting worker 2015-11-07 18:26:12 +11:00
freelist.js lib: freelist: use .pop() for allocation 2016-03-02 13:31:12 -05:00
linkedlist.js lib,test: deprecate _linklist 2015-10-08 17:32:08 -07:00
module.js repl: keep the built-in modules non-enumerable 2016-04-20 16:52:26 -07:00
net.js net: move isLegalPort to internal/net 2016-02-08 23:01:04 +11:00
process.js lib,src: refactor src/node.js into internal files 2016-03-31 18:11:57 -05:00
readme.md doc: add internal modules notice 2015-08-25 11:58:50 -04:00
repl.js repl: make sure historyPath is trimmed 2016-01-18 07:42:57 -06:00
socket_list.js child_process: refactor self=this in socket_list 2016-03-31 09:38:55 -05:00
util.js util: move .decorateErrorStack to internal/util 2015-12-05 16:31:22 +11:00
v8_prof_polyfill.js tools: run tick processor without forking 2016-01-06 12:10:46 -05:00
v8_prof_processor.js tools: enable linting for v8_prof_processor.js 2016-04-20 16:52:24 -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.