add require.cache
This commit is contained in:
parent
3d4e4d8909
commit
54e844cf08
@ -3243,6 +3243,10 @@ a directory.
|
|||||||
paths onto it, or at startup with the `NODE_PATH` environmental
|
paths onto it, or at startup with the `NODE_PATH` environmental
|
||||||
variable (which should be a list of paths, colon separated).
|
variable (which should be a list of paths, colon separated).
|
||||||
|
|
||||||
|
The second time `require('foo')` is called, it is not loaded again from
|
||||||
|
disk. It looks in the `require.cache` object to see if it has been loaded
|
||||||
|
before.
|
||||||
|
|
||||||
|
|
||||||
## Addons
|
## Addons
|
||||||
|
|
||||||
|
@ -268,6 +268,7 @@ var module = (function () {
|
|||||||
require.extensions = extensions;
|
require.extensions = extensions;
|
||||||
// TODO: Insert depreciation warning
|
// TODO: Insert depreciation warning
|
||||||
require.registerExtension = registerExtension;
|
require.registerExtension = registerExtension;
|
||||||
|
require.cache = moduleCache;
|
||||||
|
|
||||||
var dirname = path.dirname(filename);
|
var dirname = path.dirname(filename);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user