UNPKG
shokk
Version:
latest (1.0.6)
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
Ernest Oporto's terminal business card (@shokk)
www.shokk.com
shokk/shokk
shokk
/
bin.js
9 lines
(6 loc)
•
244 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
#!/usr/bin/env node
// 👆 Used to tell Node.js that this is a CLI tool
import
{ readFileSync }
from
'node:fs'
;
import
{ join }
from
'node:path'
;
const
output =
readFileSync
(
join
(
import
.
meta
.
dirname
,
'output'
),
'utf8'
);
console
.
log
(output);