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:
authorJohannes <mail@johannesewald.de>2013-02-05 02:15:33 +0400
committerJohannes <mail@johannesewald.de>2013-02-05 02:15:33 +0400
commite1d59f6f8a342f37cff656f83abfc01538188db0 (patch)
tree0a1a69fe9c70f70b2ea39f7d8d94a5c9b2bdd94f /README.md
parent7b21f0f1f0284aa6a935d0767709e294168c1268 (diff)
parentaca26e99612535e5ee1a7f40994747f6c415b56e (diff)
Merge pull request #9 from nisaacson/david
Add 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 9def98b..1b41389 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/jhnns/rewire/status.png)](http://david-dm.org/jhnns/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);
}