WPM
100
CPM
100
Errors
0
Time
15Min
Accuracy
100%
Start NodeJs code typing Practice. Creating Server in NodeJs, Testing Request and Response, Accept Input from command line, Properties of Object and Output to Command Line in NodeJs.Click on the area below to start typing.

S.No.Paragraph : Practice repeatedly whatever you would like most for full fifteen minutes Lessionsclick to Practice
1http.createServer(function (request, response) { // Send the HTTP header // HTTP Status: 200 : OK // Content Type: text/plain response.writeHead(200, {'Content-Type': 'text/plain'}); // Send the response body as "Hello World" response.end('Hello World\n'); }).listen(8081); // Console will print the message console.log('Server running at http://127.0.0.1:8081/');1.1 first program creating server in node.js