Http Server
A company hosts its website and a product API on same server using the code below:
let http = require("http");
let commonResponse = function(response){
response.writeHead(200, { "Content-Type": "text/html" });
response.write("Request Completed");
}
let handleApi = function(req, res){
if(req.method == "POST"){
commonResponse(res);
res.end();
}
}
let handleWeb = function(req, res){
commonResponse(res)
res.end();
}
http.createServer(handleApi).listen(4513);
http.createServer(handleWeb).listen(4514);
Select all the correct answers.
(Select all acceptable answers.)
Tags
- AI-resistant
- Node.js
- Standard Library
- Public
- Easy
Information
Score Distribution
% of candidates
Score
Would you like to see our other questions?
We have 1000+ premium hand-crafted questions for 160+ job skills and 20+ coding languages. We prefer questions with small samples of actual work over academic problems or brain teasers.
Would you like to see our tests?
The following tests contain Node.js related questions:
On the blog
Since we're all biased and we use incorrect proxies, why not just outsource hiring to experts or recruitment agencies? After all, they've been screening people for many years, so they must know how to do it right?
Not really. I was surprised to discover that many experts...