We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent9dcb9bc commit57a4382Copy full SHA for 57a4382
README.md
@@ -13,6 +13,8 @@ rewire does **not** load the file and eval the contents to emulate node's requir
13
Furthermore rewire comes also with support for various client-side bundlers (see[below](#client-side-bundlers)).
14
15
[](http://travis-ci.org/jhnns/rewire)
16
+[](http://david-dm.org/nisaacson/rewire)
17
+Dependency tracking by[David](http://david-dm.org/)
18
19
<br />
20
@@ -36,11 +38,11 @@ var fs = require("fs"),
36
38
http=require("http"),
37
39
someOtherVar="hi",
40
myPrivateVar=1;
-
41
+
42
functionreadSomethingFromFileSystem(cb) {
43
// But no scoped variables
44
var path="/somewhere/on/the/disk";
45
46
console.log("Reading from file system ...");
47
fs.readFile(path,"utf8", cb);
48
}