참고소스 수정본
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
const http = require('http');
|
||||
|
||||
console.log('output from server');
|
||||
console.error('error from server');
|
||||
|
||||
const port = process.argv[2] || 3000;
|
||||
|
||||
const requestListener = function (req, res) {
|
||||
if (req.url === '/hello') {
|
||||
res.end('hello');
|
||||
return;
|
||||
}
|
||||
if (req.url.startsWith('/env-')) {
|
||||
res.end(process.env[req.url.substring(5)]);
|
||||
return;
|
||||
}
|
||||
if (req.url === '/port') {
|
||||
res.end('' + port);
|
||||
return;
|
||||
}
|
||||
if (req.url === '/redirect') {
|
||||
res.writeHead(301, 'Moved');
|
||||
res.end();
|
||||
return;
|
||||
}
|
||||
res.writeHead(404);
|
||||
res.end();
|
||||
};
|
||||
|
||||
const server = http.createServer(requestListener);
|
||||
|
||||
// delay creating the server to test waiting for it
|
||||
setTimeout(() => {
|
||||
server.listen(port, () => {
|
||||
console.log('listening on port', port);
|
||||
});
|
||||
}, process.argv[3] ? +process.argv[3] : 0);
|
||||
Reference in New Issue
Block a user