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(); }