Paste2
Create Paste
Followup Paste
QR
app
.
get
(
"/hello"
,
function
(
req
,
res
)
{
var
waitTill
=
new
Date
(
new
Date
().
getTime
()
+
15
*
1000
);
while
(
waitTill
>
new
Date
())
{
}
res
.
send
(
"ok"
);
});
app
.
get
(
"/"
,
function
(
req
,
res
)
{
res
.
send
(
"ok"
);
});
Please enable JavaScript to view the
comments powered by Disqus.
Comments powered by
Disqus