UNPKG
@martinfranek/naught
Version:
latest (1.7.0)
1.7.0
zero downtime deployment for your node.js server
github.com/martinfranek/naught
martinfranek/naught
@martinfranek/naught
/
test
/
server9.js
9 lines
(8 loc)
•
193 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
var
fs =
require
(
'fs'
) process.
on
(
'message'
,
function
(
message
) {
if
(message ==
'shutdown'
) { fs.
writeFileSync
(
'tmp'
,
'shutdown'
) process.
send
(
'offline'
) } }) process.
send
(
'online'
)