diff options
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 |