This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var request = require('request'), | |
fs = require('fs'); | |
request({ | |
url: 'http://localhost:5555/r/' + process.argv[2] | |
}, function(err, res, body) { | |
console.log(err, res && res.statusCode, body); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var foo; foo.bar; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var express = require('express') | |
, app = express(); | |
app.use(function(req, res, next) { | |
var t = Date.now(), end = res.end; | |
res.end = function() { | |
end.apply(this, arguments); | |
console.log(req.path, Date.now() - t); | |
}; | |
next(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MICROSOFT SOFTWARE LICENSE TERMS FOR A VIRTUAL HARD DISK IMAGE OF AN EVALUATION COPY OF THE FOLLOWING MICROSOFT PRODUCT: | |
WINDOWS 7 | |
MICROSOFT WINDOWS INTERNET EXPLORER 8 | |
These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the evaluation software named above which may include associated media, printed materials, “online” or electronic documentation, and Internet-based services provided as part of this Virtual Hard Disk Image (all collectively referred to as the “software”). The terms also apply to any Microsoft | |
• updates, | |
• supplements, | |
• Internet-based services, and | |
• support services | |
for this software, unless other terms accompany those items. If so, those terms apply. |