UNPKG
@kronodeus/nwz
Version:
latest (0.3.1)
0.3.1
0.3.0
0.2.1
0.2.0
0.1.3
Browse the top stories from Hacker News right in your terminal.
github.com/kronodeus/nwz
@kronodeus/nwz
/
bin
/
nwz.js
10 lines
(8 loc)
•
246 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env node
import
{ main }
from
'../dist/main.js'
main
(process.
argv
.
slice
(
2
)) .
then
(
() =>
process.
exit
(
0
)) .
catch
(
(
error
) =>
{
console
.
error
(error
instanceof
Error
? error.
message
: error) process.
exit
(
1
) })