UNPKG
blessings
Version:
latest (0.0.1)
0.0.1
0.0.0
A port of python blessings.
jussi-kalliokoski/node-blessings
blessings
/
test.coffee
12 lines
(8 loc)
•
184 B
text/coffeescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
Terminal
=
require
(
'./lib'
) t =
new
Terminal
() t.
clear
() t.
write
(t.
move
(
0
,
0
)) t.
hideCursor
() t.
write
(
'hello'
)
setTimeout
((-> t.
showCursor
()),
5000
)
setTimeout
(process.
exit
,
30000
)