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.117.197.188
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 /
browser-sync-ui /
Delete
Unzip
Name
Size
Permission
Date
Action
lib
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
public
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
static
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
templates
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
LICENSE
11.08
KB
-rw-rw-r--
2022-08-30 11:49
README.md
285
B
-rw-rw-r--
2022-08-30 11:49
index.js
1.03
KB
-rw-rw-r--
2022-08-30 11:49
package.json
1.49
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
"use strict"; var UI = require("./lib/UI"); var config = require("./lib/config"); var Events = require("events").EventEmitter; /** * Hooks are for attaching functionality to BrowserSync */ module.exports.hooks = { /** * Client JS is added to each connected client */ "client:js": fileContent(config.defaults.clientJs) }; /** * BrowserSync Plugin interface * @param {Object} opts * @param {BrowserSync} bs * @param {Function} cb * @returns {UI} */ module.exports["plugin"] = function (opts, bs, cb) { var ui = new UI(opts, bs, new Events()); bs.setOption("session", new Date().getTime()); ui.cb = cb || function () { /*noop*/ }; ui.init(); return ui; }; module.exports["plugin:name"] = config.defaults.pluginName; /** * @param filepath * @returns {*} */ function getPath (filepath) { return require("path").join(__dirname, filepath); } /** * @param filepath * @returns {*} */ function fileContent (filepath) { return require("fs").readFileSync(getPath(filepath)); }