1 | #! /usr/bin/env node
|
2 |
|
3 | const boxen = require("boxen");
|
4 | const { bold, blue } = require("chalk").default;
|
5 |
|
6 | const lines = [
|
7 | bold("Jacob Cofman "),
|
8 | "Coffee lover, Volleyball player, JavaScript developer ",
|
9 | " ",
|
10 | bold(" Web: ") + blue("https://jcofman.de"),
|
11 | bold(" Blog: ") + blue("https://jcofman.de/blog"),
|
12 | bold(" Work: ") + blue("https://www.inovex.de"),
|
13 | bold(" Behance: ") + blue("https://www.behance.net/cofmanjacob2a8"),
|
14 | bold(" GitHub: ") + blue("https://github.com/JCofman"),
|
15 | bold(" Twitter: ") + blue("https://twitter.com/Jcofman"),
|
16 | bold(" LinkedIn: ") +
|
17 | blue("https://www.linkedin.com/in/jacob-cofman-758b46b1/"),
|
18 | bold(" Xing: ") + blue("https://www.xing.com/profile/Jacob_Cofman ")
|
19 | ];
|
20 |
|
21 | const message = lines.join("\n");
|
22 |
|
23 | const box = boxen(message, {
|
24 | borderColor: "#50E3C2",
|
25 | borderStyle: "round",
|
26 | margin: 1,
|
27 | padding: 1
|
28 | });
|
29 |
|
30 | process.stdout.write(box + "\n\n");
|