Este commit está contenido en:
Your Name
2020-05-28 10:46:51 +00:00
padre 8e5fb9911c
commit cfb1b01b3c
Se han modificado 119 ficheros con 3177 adiciones y 0 borrados

Ver fichero

@@ -0,0 +1,55 @@
var log = require('./colorized').log,
c = require('./colorized').colorized,
s = {
n: ["FgRed", "BgBlack", "Bright"], // Normality
bkr: ["FgRed", "BgBlack", "Bright", "Blink"], // Blink red
bky: ["FgYellow", "BgBlack", "Bright", "Blink"], // Blink yellow
b: ["FgWhite", "BgBlack"], // Border
l: ["FgWhite", "BgBlack", "Bright"], // logo
lr: ["FgRed", "BgBlack", "Bright"], // logo red
ly: ["FgYellow", "BgBlack", "Bright"], // logo yellow
lm: ["FgMagenta", "BgBlack", "Bright"], // logo magenta
lg: ["FgGreen", "BgBlack", "Bright"] // logo green
},
b = () => c("---", s.b),
bkr = (x) => c(x, s.bkr),
bky = (x) => c(x, s.bky),
l = (x) => c(x, s.l),
ly = (x) => c(x, s.ly),
lr = (x) => c(x, s.lr),
lm = (x) => c(x, s.lm),
lg = (x) => c(x, s.lg);
module.exports = {
logo: function () {
log("--------------------------------------------", s.b);
log(b() + c(" MW-NodeJS Server 0.3 ", s.lr) + b());
log("--------------------------------------------", s.b);
log(b() + l(" .-. ") + b());
log(b() + l(" {{") + lm("#") + l("}} ") + b());
log(b() + l(" 888 ") + b());
log(b() + l(" 888 ") + b());
log(b() + l(" 8@8 ") + b());
log(b() + l(" _ )8( _ ") + b());
log(b() + l(" ____________________(") + lr("@") + l(")__/8@8\\__(") + lr("@") + l(") ") + b());
log(b() + l(' | | | |`~"-=):(=-"~` ') + b());
log(b() + l(" | ") + lg("<>") + l(" | | ") + lg("<>") + l(" | |.| ") + b());
log(b() + l(" | ") + lg("<><>") + l(" | | ") + lg("<><>") + l(" | |") + bky("A") + l("| ") + b());
log(b() + l(" | ") + lg("<> <>") + l("| |") + lg("<> <>") + l(" | |'| ") + b());
log(b() + l(" | ") + lg("<>") + l(" .--------. ") + lg("<>") + l(" | |.| ") + b());
log(b() + l(" |_____| ") + ly("()") + l(" |_____| |") + bky("C") + l("| ") + b());
log(b() + l(" | | ") + ly("(O\\/O)") + l(" | | |'| ") + b());
log(b() + l(" | \\ ") + ly("/\\") + l(" / | |.| ") + b());
log(b() + l(" |______\\ ") + ly("\\/") + l(" /______| |") + bky("A") + l("| ") + b());
log(b() + l(" | '.__.' | |'| ") + b());
log(b() + l(" | ") + lg("<>") + l(" | | ") + lg("<>") + l(" | |.| ") + b());
log(b() + l(" | ") + lg("<> <>") + l("| |") + lg("<> <>") + l(" | |") + bky("B") + l("| ") + b());
log(b() + l(" | ") + lg("<><>") + l(" | | ") + lg("<><>") + l(" | |'| ") + b());
log(b() + l(" | ") + lg("<>") + l(" | | ") + lg("<>") + l(" | |.| ") + b());
log(b() + l(" |________|__|________| \\ / ") + b());
log(b() + l(" v ") + b());
log("--------------------------------------------", s.b);
}
}