Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.119.103.13
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
webpack /
lib /
node /
Delete
Unzip
Name
Size
Permission
Date
Action
CommonJsChunkLoadingPlugin.js
3.58
KB
-rw-rw-r--
2022-08-30 11:49
NodeEnvironmentPlugin.js
1.83
KB
-rw-rw-r--
2022-08-30 11:49
NodeSourcePlugin.js
353
B
-rw-rw-r--
2022-08-30 11:49
NodeTargetPlugin.js
1.17
KB
-rw-rw-r--
2022-08-30 11:49
NodeTemplatePlugin.js
848
B
-rw-rw-r--
2022-08-30 11:49
NodeWatchFileSystem.js
5.75
KB
-rw-rw-r--
2022-08-30 11:49
ReadFileChunkLoadingRuntimeModule.js
9.57
KB
-rw-rw-r--
2022-08-30 11:49
ReadFileCompileAsyncWasmPlugin.js
2.98
KB
-rw-rw-r--
2022-08-30 11:49
ReadFileCompileWasmPlugin.js
2.41
KB
-rw-rw-r--
2022-08-30 11:49
RequireChunkLoadingRuntimeModule.js
7.36
KB
-rw-rw-r--
2022-08-30 11:49
nodeConsole.js
3.79
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const CachedInputFileSystem = require("enhanced-resolve/lib/CachedInputFileSystem"); const fs = require("graceful-fs"); const createConsoleLogger = require("../logging/createConsoleLogger"); const NodeWatchFileSystem = require("./NodeWatchFileSystem"); const nodeConsole = require("./nodeConsole"); /** @typedef {import("../../declarations/WebpackOptions").InfrastructureLogging} InfrastructureLogging */ /** @typedef {import("../Compiler")} Compiler */ class NodeEnvironmentPlugin { /** * @param {Object} options options * @param {InfrastructureLogging} options.infrastructureLogging infrastructure logging options */ constructor(options) { this.options = options; } /** * Apply the plugin * @param {Compiler} compiler the compiler instance * @returns {void} */ apply(compiler) { const { infrastructureLogging } = this.options; compiler.infrastructureLogger = createConsoleLogger({ level: infrastructureLogging.level || "info", debug: infrastructureLogging.debug || false, console: infrastructureLogging.console || nodeConsole({ colors: infrastructureLogging.colors, appendOnly: infrastructureLogging.appendOnly, stream: infrastructureLogging.stream }) }); compiler.inputFileSystem = new CachedInputFileSystem(fs, 60000); const inputFileSystem = compiler.inputFileSystem; compiler.outputFileSystem = fs; compiler.intermediateFileSystem = fs; compiler.watchFileSystem = new NodeWatchFileSystem( compiler.inputFileSystem ); compiler.hooks.beforeRun.tap("NodeEnvironmentPlugin", compiler => { if (compiler.inputFileSystem === inputFileSystem) { compiler.fsStartTime = Date.now(); inputFileSystem.purge(); } }); } } module.exports = NodeEnvironmentPlugin;