-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
45 lines (39 loc) · 1.09 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
const fs = require("fs");
const process = require("process");
let _readFileSync = fs.readFileSync;
const enableDebugLogs = process.env.FILE_DEBUGGER_DEBUG_LOG === "1";
const fileToTrace = process.env.FILE_DEBUGGER_TRACE_THIS;
const pluginPrefix = "FILE DEBUGGER:";
const log = (...args) => {
args = [pluginPrefix].concat(args);
console.log(...args);
};
const debug = (...args) => {
if (!enableDebugLogs) return;
args = [pluginPrefix].concat(args);
console.log(...args);
};
log(`File Debugger is included.`);
if (fileToTrace) {
log(`Any time a file is read that has ${fileToTrace} in it's pathname, a breakpoint would be automatically added`)
}
if (enableDebugLogs) {
log(`All files' reads will be logged`);
}
const trace = (fileName) => {
debug("Reading file", fileName);
if (fileName.includes(fileToTrace)) {
debugger;
}
};
fs.readFileSync = function (...args) {
const fileName = args[0];
trace(fileName);
return _readFileSync.apply(this, args);
};
let _readFile = fs.readFile;
fs.readFile = function (...args) {
const fileName = args[0];
trace(fileName);
return _readFile.apply(this, args);
};