-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcli.js
executable file
·45 lines (37 loc) · 1.06 KB
/
cli.js
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
'use strict';
const kleur = require('kleur');
kleur.enabled = require('./lib/supports-color');
const { author } = require('./package.json');
const exitHook = require('exit-hook');
const open = require('open');
const Select = require('./lib/prompt-select');
const config = { pointer: kleur.blue('❯') };
const choices = new Select.Choices([{
name: 'Github',
url: author.url
}, {
name: 'Contact',
url: `mailto:${author.email}`
}, {
name: 'Public key',
url: author.pubkey
}, {
name: 'Quit',
action: () => process.exit()
}], config);
const g = `⌐${kleur.blue('■')}-${kleur.blue('■')}`;
console.log(`
(${g})
Hey, I'm
${kleur.blue('Dario Vladović')} (also known as @vladimyr)
(${g}) I'm a developer who enjoys writing javascript,
( •_•)>${g} breaks and builds stuff for fun & profit.
`);
const select = new Select({ choices });
select.on('select', onSelect);
exitHook(() => select.end());
select.ask();
function onSelect(choice) {
if (choice.url) return open(choice.url);
return choice.action && choice.action(choice, select);
}