The httpServerResponse.writableEnded is an inbuilt application programming interface of class Server Response within http module which is used to check if response.end() has been called or not.
Syntax:
response.writableEnded
Parameters: This method does not accept any parameter.
Return Value: This method returns true if and only if response.end() has been called otherwise false.
Example 1: Filename: index.js
Javascript
const http = require( 'http' );
const PORT = process.env.PORT || 3000;
const httpServer = http.createServer(
function (request, response) {
const value = response.writableEnded;
response.end( "response.end() has been called : "
+ value, 'utf8' , () => {
console.log( "displaying the result..." );
httpServer.close(() => {
console.log( "server is closed" )
})
});
});
httpServer.listen(PORT, () => {
console.log( "Server is running at port 3000..." );
});
|
Run the index.js file using the below command:
node index.js
Console output:
Server is running at port 3000...
displaying the result...
displaying the result...
server is closed
server is closed
Browser Output: Paste the local host address http://localhost:3000/. In the search bar of the browser.
Output:
response.end() has been called : false
Example 2: Filename: index.js
Javascript
const http = require( 'http' );
const http2Handlers = (request, response) => {
const value = response.writableEnded;
if (value)
response.write(
"<h1>Response.end() has been called<h1>" )
else
response.write(
"<h1>Response.end() has been not called<h1>" )
response.end()
};
const httpServer = http.createServer(
http2Handlers).listen(3000, () => {
console.log( "Server is running at port 3000..." );
});
|
Run the index.js file using the below command:
node index.js
Console Output:
Server is running at port 3000...
Browser Output: Paste the localhost address http://localhost:3000/. In the search bar of the browser.
Output:
Response.end() has been not called
Reference: https://nodejs.org/dist/latest-v12.x/docs/api/http.html#http_response_writableended
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
06 Apr, 2023
Like Article
Save Article