Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rewire.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoah Isaacson <noah@nisaacson.com>2013-02-04 19:36:59 +0400
committerNoah Isaacson <noah@nisaacson.com>2013-02-04 19:36:59 +0400
commit57a43829daeffe6b8e473317b2799fbc4b843dab (patch)
tree4d17bd4e711640258f83e2d6bd40c5c2c7244519 /README.md
parent9dcb9bce1d7e15d2aa7e7b9cb9b0c07b3c4b7a71 (diff)
Added David dependency tracking badge to README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md
index f5316c6..fdc0b12 100644
--- a/README.md
+++ b/README.md
@@ -13,6 +13,8 @@ rewire does **not** load the file and eval the contents to emulate node's requir
Furthermore rewire comes also with support for various client-side bundlers (see [below](#client-side-bundlers)).
[![Build Status](https://secure.travis-ci.org/jhnns/rewire.png?branch=master)](http://travis-ci.org/jhnns/rewire)
+[![Dependency Status](http://david-dm.org/nisaacson/rewire/status.png)](http://david-dm.org/nisaacson/rewire)
+Dependency tracking by [David](http://david-dm.org/)
<br />
@@ -36,11 +38,11 @@ var fs = require("fs"),
http = require("http"),
someOtherVar = "hi",
myPrivateVar = 1;
-
+
function readSomethingFromFileSystem(cb) {
// But no scoped variables
var path = "/somewhere/on/the/disk";
-
+
console.log("Reading from file system ...");
fs.readFile(path, "utf8", cb);
}