serving static files with a node server

This commit is contained in:
talksik
2020-07-06 12:35:23 -07:00
parent 92adbbf876
commit 8ba1d62274
456 changed files with 79989 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
module.exports = inspectorLog;
// black hole
const nullStream = new (require('stream').Writable)();
nullStream._write = () => {};
/**
* Outputs a `console.log()` to the Node.js Inspector console *only*.
*/
function inspectorLog() {
const stdout = console._stdout;
console._stdout = nullStream;
console.log.apply(console, arguments);
console._stdout = stdout;
}