blob: f5f9cb5c7b92e2a08882dd012958d136d42bdf6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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();
}
|