From b96ae6674d6b499c5cf1ed4825520adabb22c943 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Fri, 3 Jun 2011 08:14:35 +0200 Subject: [PATCH] document require.cache --- doc/api/globals.markdown | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/api/globals.markdown b/doc/api/globals.markdown index 8acecea..d2678fd 100644 --- a/doc/api/globals.markdown +++ b/doc/api/globals.markdown @@ -32,6 +32,12 @@ To require modules. See the [Modules](modules.html#modules) section. Use the internal `require()` machinery to look up the location of a module, but rather than loading the module, just return the resolved filename. +### require.cache + +Modules are cached in this object when they are required. By deleting a key +value from this object, the next `require` will reload the module. + + ### require.paths An array of search paths for `require()`. This array can be modified to add -- 2.7.4