LouisLam
3 years ago
6 changed files with 62 additions and 57 deletions
@ -1,19 +1,19 @@ |
|||
var http = require("http"); |
|||
var options = { |
|||
host: "localhost", |
|||
port: "3001", |
|||
timeout: 2000, |
|||
let http = require("http"); |
|||
let options = { |
|||
host: "localhost", |
|||
port: "3001", |
|||
timeout: 2000, |
|||
}; |
|||
var request = http.request(options, (res) => { |
|||
console.log(`STATUS: ${res.statusCode}`); |
|||
if (res.statusCode == 200) { |
|||
process.exit(0); |
|||
} else { |
|||
process.exit(1); |
|||
} |
|||
let request = http.request(options, (res) => { |
|||
console.log(`STATUS: ${res.statusCode}`); |
|||
if (res.statusCode == 200) { |
|||
process.exit(0); |
|||
} else { |
|||
process.exit(1); |
|||
} |
|||
}); |
|||
request.on("error", function (err) { |
|||
console.log("ERROR"); |
|||
process.exit(1); |
|||
console.log("ERROR"); |
|||
process.exit(1); |
|||
}); |
|||
request.end(); |
|||
|
Loading…
Reference in new issue