diff options
author | Minteck <contact@minteck.org> | 2022-06-04 08:51:01 +0200 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-06-04 08:51:01 +0200 |
commit | 383285ecd5292bf9a825e05904955b937de84cc9 (patch) | |
tree | 0a53b6f02c1604b078044567c03dc1b6c944c8c2 /modules/_.js | |
download | equestriadb-383285ecd5292bf9a825e05904955b937de84cc9.tar.gz equestriadb-383285ecd5292bf9a825e05904955b937de84cc9.tar.bz2 equestriadb-383285ecd5292bf9a825e05904955b937de84cc9.zip |
Initial commit
Diffstat (limited to 'modules/_.js')
-rw-r--r-- | modules/_.js | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/modules/_.js b/modules/_.js new file mode 100644 index 0000000..f5f9cb5 --- /dev/null +++ b/modules/_.js @@ -0,0 +1,26 @@ +const os = require("os"); +module.exports = (req, res) => { + res.writeHead(200, {'Content-Type':'text/plain'}); + const os = require('os'); + res.write("__ ____ ____\n" + + "\\ \\ ____ ____ __ _____ _____/ __ \\/ __ )\n" + + " \\ \\/ __ \\/ __ `/ | /| / / _ \\/ ___/ / / / __ |\n" + + " / / /_/ / /_/ /| |/ |/ / __/ / / /_/ / /_/ /\n" + + "/_/ .___/\\__,_/ |__/|__/\\___/_/ /_____/_____/_____\n" + + " /_/ /_____/\n" + + "\n" + + "==============================\n" + + "Runtime Information:\n" + + " pawerDB version: " + variables.version + "\n NodeJS version: " + process.versions.node + "\n System: " + os.type() + " " + os.arch() + " " + os.release() + "\n User: " + os.userInfo().username + " (" + os.userInfo().uid + ":" + os.userInfo().gid + ")" + + "\n\n" + + "==============================\n" + + "Get libpawerdb:\n" + + " PHP: -\n NodeJS: -\n JavaScript (browser): -\n Bash: -\n Python: -" + + "\n\n" + + "==============================\n" + + "About pawerDB:\n" + + " Setting up: -\n API: -\n Maintenance tasks: -\n Optimizations: -" + + "\n\n" + ); + res.end(); +}
\ No newline at end of file |