UNPKG
adrianpedev
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
npm business card
github.com/adrianpedev/business-card
adrianpedev/business-card
adrianpedev
/
bin
/
card.js
9 lines
(6 loc)
•
224 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
const
fs =
require
(
'fs'
);
const
path =
require
(
'path'
);
const
output = fs.
readFileSync
(path.
join
(__dirname,
'output'
),
'utf8'
);
console
.
log
(output);