UNPKG
spinner
Version:
latest (0.3.4)
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.5
0.1.4
0.1.3
0.1.0
Spawns child processes and allocates `process.env.PORT` for each.
eladb/node-spinner
spinner
/
test
/
cleanuprace
/
normal.js
7 lines
(5 loc)
•
161 B
JavaScript
View Raw
1
2
3
4
5
6
7
var
http =
require
(
'http'
); http.
createServer
(
function
(
req, res
) { res.
end
(
'normal\n'
); }).
listen
(process.
env
.
PORT
||
5000
);
console
.
log
(
'started normal'
);