1 - NEM-1 - Node - Js HTTP Module - SYNC
1 - NEM-1 - Node - Js HTTP Module - SYNC
Time Activity
(5 mins) OPENING
● Review Learning Objectives.
● Review Agenda.
●
1
1_NEM-1: Node.js Http Module - SYNC (4 Hour 30 mins)
(35 mins) CONTENT & PRACTICE
2
1_NEM-1: Node.js Http Module - SYNC (4 Hour 30 mins)
● The function passed in the http.createServer() will be executed when the client goes to the url http://localhost:8081.
● Save the above code in a file with .js extension.
● Open the command prompt and goes to the folder where the file is there using cd command.
● Run the command node file_name.js.
● Open the browser and go the url http://localhost:8081.
● The http.createServer() method includes request object that can be used to get information about the current HTTP request
e.g. url, request header, and data.
var options = {
host: 'maininthemirror.org',
path: '/courses',
method: 'GET'
};
● The new Agent({}) (Added in v0.3.4) method is an inbuilt application programming interface (API) of the ‘http’ module in
which default globalAgent is used by http.request() which should create a custom http.Agent instance.
new Agent({options})
● Parameter
● keepalive, keepAliveMsecs, maxSockets, maxTotalSockets, maxFreeSockets, scheduling, timeout.
● The below examples illustrate the use of new Agent({}) method in Node.js.
3
1_NEM-1: Node.js Http Module - SYNC (4 Hour 30 mins)
● The agent.createConnection() (Added in v0.11.4) method is an inbuilt application programming interface of the ‘Http‘
module which is used to produce socket or stream which is further used for HTTP requests and by default, it is quite same as
net.createConnection().
4
1_NEM-1: Node.js Http Module - SYNC (4 Hour 30 mins)
● It returns an instance of the <net.Socket> class, which is a subclass of <stream.Duplex>. A socket or stream can be supplied
either by returning the socket/stream from this function or by passing the socket/stream to the callback.
agent.createConnection(options[, callback])
● Return Value <stream.Duplex>: It returns the duplex stream which is both readable and writable.
● Below examples illustrate the use of agent.createConnection(options[, callback]) method in Node.js.
// Node.js program to demonstrate the
// agent.createConnection() method
5
1_NEM-1: Node.js Http Module - SYNC (4 Hour 30 mins)
● The agent.maxSockets (Added in v0.3.6) method is an inbuilt application programming interface of the ‘Http‘ module which
determines how many concurrent sockets the agent can have open per origin.
● Origin is the returned value of agent.getName().
// Node.js program to demonstrate the
// agent.maxSockets method
console.log(keepAliveAgent.maxSockets);
// Options object
const options = {
host: 'maninthemirror.org',
port: 80,
path: '/',
method: 'GET',
agent: keepAliveAgent,
};
6
1_NEM-1: Node.js Http Module - SYNC (4 Hour 30 mins)
console.log("StatusCode: ", res.statusCode);
});
req.end();
● The http.ClientRequest.abort() is an inbuilt application programming interface of class Client Request within http module
which is used to abort the client request.
ClientRequest.abort()
● Return Value: This method does not return any value
// Node.js program to demonstrate the
// request.abort() APi
// Making a request
const options = {
port: 3000,
host: '127.0.0.1',
headers: {
'Connection': 'Upgrade',
'Upgrade': 'websocket'
}
};
7
1_NEM-1: Node.js Http Module - SYNC (4 Hour 30 mins)
})
});
● The http.ClientRequest.connection is an inbuilt application programming interface of class ClientRequest within the HTTP
module which is used to get the reference of underlying client request socket.
const request.connection
● Return Value: It does not return any value.
// Node.js program to demonstrate the
// request.connection method
8
1_NEM-1: Node.js Http Module - SYNC (4 Hour 30 mins)
process.exit(0)
});
● The http.ClientRequest.protocol is an inbuilt application programming interface of class ClientRequest within the HTTP
module which is used to get the object of client request protocol.
const request.protocol
● Return Value: This method returns the object of the client request protocol.
// Now that server is running
server.listen(3000, '127.0.0.1', () => {
// Make a request
const options = {
port: 3000,
host: '127.0.0.1',
headers: {
'Connection': 'Upgrade',
'Upgrade': 'websocket'
}
};
req.protocol = 'HTTP'
// Getting protocol
9
1_NEM-1: Node.js Http Module - SYNC (4 Hour 30 mins)
// by using protocol method
const v = req.protocol;
process.exit(0)
});
● The http.server.setTimeout() is an inbuilt application programming interface of class Server within HTTP module which is
used to set the time out value for the socket.
server.setTimeout([msecs][, callback])
● Return Value: This method returns nothing but a call back function for further operation.
// Node.js program to demonstrate the
// server.setTimeout() APi
// Setting up PORT
const PORT = process.env.PORT || 3000;
// Display result
// by using end() api
response.end( "socket buffersize : "
10
1_NEM-1: Node.js Http Module - SYNC (4 Hour 30 mins)
+ value.bufferSize, 'utf8', () => {
console.log("Displaying the result...");
});
});
httpServer.setTimeout(3000,()=>{
console.log(
"Socket is destroyed due to timeout")
// Closing server
// by using close() api
httpServer.close(()=>{
console.log("Server is closed")
})
})
● The http.server.listen() is an inbuilt application programming interface of class Server within the http module which is used
to start the server from accepting new connections.
const server.listen(options[, callback])
● Return Value: This method returns nothing but a callback function.
// Node.js program to demonstrate the
// server.listen() method
11
1_NEM-1: Node.js Http Module - SYNC (4 Hour 30 mins)
// Setting up PORT
const PORT = process.env.PORT || 3000;
// Display result
// by using end() method
response.end("socket buffersize : "
+ value.bufferSize, 'utf8', () => {
console.log("displaying the result...");
// Closing server
// by using close() method
httpServer.close(() => {
console.log("server is closed")
})
});
});
12
1_NEM-1: Node.js Http Module - SYNC (4 Hour 30 mins)
● The httpServerResponse.writeProcessing() is an inbuilt application programming interface of class ServerResponse within
the HTTP module which is used to send an HTTP/1.1 102 Processing message to the client.
response.writeProcessing()
● Return Value: This method has nothing to return.
// Node.js program to demonstrate the
// response.writeProcessing() method
// Setting up PORT
const PORT = process.env.PORT || 3000;
// Display result
// by using end() method
response.end("HTTP/1.1 102 Processing message"
+ " has been sent", 'utf8', () => {
console.log("displaying the result...");
httpServer.close(() => {
console.log("server is closed")
})
});
});
13
1_NEM-1: Node.js Http Module - SYNC (4 Hour 30 mins)
console.log("Server is running at port 3000...");
});
● The httpServerResponse.getHeader() is an inbuilt application programming interface of class Server Response within http
module which is used to get the response header of the particular name.
response.getHeader(name)
● Return Value: This method returns the value of the particular header object.
// Node.js program to demonstrate the
// response.getHeader(name) APi
// Setting up PORT
const PORT = process.env.PORT || 3000;
// Display result
response.end( "hello world ", 'utf8', () => {
console.log("displaying the result...");
14
1_NEM-1: Node.js Http Module - SYNC (4 Hour 30 mins)
console.log("server is closed")
})
});
});
● The httpServerResponse.end() is an inbuilt application programming interface of class Server Response within http module
which is used to send the signal to the server that all the header has been sent.
response.end(data, Encodingtype, Callbackfunction)
// Node.js program to demonstrate the
// response.end() method
// Setting up PORT
const PORT = process.env.PORT || 3000;
15
1_NEM-1: Node.js Http Module - SYNC (4 Hour 30 mins)
● The httpServerResponse.connection is an inbuilt application programming interface of class Server Response within http
module which is used to get the response socket of this HTTP connection .
response.connection
● Return Value: This method returns the response socket of this HTTP connection.
// Node.js program to demonstrate the
// response.connection APi
// Setting up PORT
const PORT = process.env.PORT || 3000;
// Getting connection
// by using response.connection Api
const value = response.connection;
16
1_NEM-1: Node.js Http Module - SYNC (4 Hour 30 mins)
// Display result
response.end( "port address : "
+ value.address().port, 'utf8', () => {
console.log("displaying the result...");
● This is very huge topic. You can add topics from here also based on time and need.
17
1_NEM-1: Node.js Http Module - SYNC (4 Hour 30 mins)
CLOSING
Ask participants to summarise what they learned in today’s session.
● Let participants know what comes next -
18