Home Web Front-end Front-end Q&A nodejs close server function

nodejs close server function

May 13, 2023 pm 08:07 PM

With the continuous development and application of Node.js technology, the application of building web servers is becoming more and more widespread. During the development process, we often encounter a requirement: shut down the server. So how do you shut down the server accurately and gracefully in a Node.js application? This article will detail how to use Node.js to build an application that can shut down the server gracefully.

1. Starting and shutting down the Node.js server
In Node.js, starting the server is very simple and you only need to use the built-in http module. For example:

const http = require('http');
const server = http.createServer((req, res) => {
    res.end('Hello World!');
});
server.listen(3000, () => {
    console.log('Server is running on port 3000');
});
Copy after login

The above code creates an HTTP server and binds it to port 3000. Of course, you can also use frameworks such as Express to create web servers. But no matter which framework is used, the method of shutting down the server is basically the same.

When we need to shut down the server, we can use one of the following two methods.

1. Use Ctrl C to force terminate the process
When we use the command line to start the Node.js application, we can terminate the process by pressing the Ctrl C key combination. This method is simple and fast, but it is not elegant and does not perform some necessary cleanup work, which may cause some problems.

2. Shut down the server by listening to the SIGINT signal
In Node.js, you can listen to the signal event and perform some operations when the event occurs. We can shut down the server gracefully by listening to the SIGINT signal event and perform some necessary operations, such as releasing resources, saving state, etc. The following is a sample code:

const http = require('http');
const server = http.createServer((req, res) => {
    res.end('Hello World!');
});
server.listen(3000, () => {
    console.log('Server is running on port 3000');
});

process.on('SIGINT', () => {
    console.log('Received SIGINT signal, shutting down server...');
    server.close(() => {
        console.log('Server has been shut down.');
        process.exit();
    });
});
Copy after login

In the above code, we listen to the SIGINT signal through the process object. When the signal is triggered, log information is output and the web server is shut down gracefully. The server.close() method in the code can stop the server and execute the callback function after all connections are disconnected. In the callback function, we output the information about shutting down the server and exit the process using the process.exit() method.

It should be noted that in actual use, we may need to perform some additional operations, such as saving the state to the database, sending notification emails, etc. These operations can be placed in a callback function to ensure they are executed when the server is shut down.

2. Graceful shutdown of Node.js server
In the above example, we have completed the basic process of server shutdown. However, in real applications, some optimizations may be required to ensure a more graceful shutdown of the server.

1. Timeout for processing requests
When the web server is processing a request, if the request takes too long, the server may not shut down properly. Therefore, before shutting down the server, we need to stop processing all requests, or set a timeout for the request to ensure that the processing is completed within the timeout.

const http = require('http');
const server = http.createServer((req, res) => {
    res.end('Hello World!');
});
server.listen(3000, () => {
    console.log('Server is running on port 3000');
});

let connections = [];

server.on('connection', (connection) => {
    connections.push(connection);
    connection.on('close', () => {
        const index = connections.indexOf(connection);
        if (index !== -1) {
            connections.splice(index, 1);
        }
    });
});

function closeConnections() {
    console.log('Closing all connections...');
    connections.forEach((connection) => {
        connection.end();
    });
    setTimeout(() => {
        connections.forEach((connection) => {
            connection.destroy();
        });
        server.close(() => {
            console.log('Server has been shut down.');
            process.exit();
        });
    }, 10000);
}

process.on('SIGINT', () => {
    console.log('Received SIGINT signal, shutting down server...');
    closeConnections();
});
Copy after login

2. Handling unfinished requests
When the web server processes a request, it may involve multiple operations, such as reading files, querying the database, etc. If these operations are not completed before the server is shut down, it may cause data loss, connection interruption and other problems. Therefore, before shutting down the server, we need to ensure that all operations are completed. For example, use Promise to handle reading files.

const http = require('http');
const fs = require('fs').promises;
const server = http.createServer((req, res) => {
    fs.readFile('./index.html')
        .then((data) => {
            res.end(data);
        })
        .catch((err) => {
            console.error(err);
            res.statusCode = 500;
            res.end('Internal server error');
        });
});
server.listen(3000, () => {
    console.log('Server is running on port 3000');
});

let connections = [];

server.on('connection', (connection) => {
    connections.push(connection);
    connection.on('close', () => {
        const index = connections.indexOf(connection);
        if (index !== -1) {
            connections.splice(index, 1);
        }
    });
});

function closeConnections() {
    console.log('Closing all connections...');
    connections.forEach((connection) => {
        connection.end();
    });
    setTimeout(() => {
        connections.forEach((connection) => {
            connection.destroy();
        });
        server.close(() => {
            console.log('Server has been shut down.');
            process.exit();
        });
    }, 10000);
}

process.on('SIGINT', () => {
    console.log('Received SIGINT signal, shutting down server...');

    // 进行必要的清理工作
    console.log('Cleaning up...');
    fs.unlink('./index.html')
        .then(() => {
            console.log('File has been deleted.');
        })
        .catch((err) => {
            console.error(err);
        });

    // 关闭所有连接
    closeConnections();
});
Copy after login

In the above code, we use Promise to read the file to ensure that the file has been deleted correctly before closing the server. Before shutting down the server, we also closed all connections and forcefully closed all connections and the server after 10 seconds. In actual use, different timeouts can be set as needed.

3. Summary
In Node.js applications, shutting down the web server is a common requirement. This article describes how to use the built-in http module to create a web server and shut down the server gracefully by listening to the SIGINT signal. At the same time, we also introduced how to optimize the process of shutting down the server to ensure that the server can shut down gracefully under various circumstances. In actual applications, it can be appropriately expanded and optimized as needed to meet different needs.

The above is the detailed content of nodejs close server function. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is useEffect? How do you use it to perform side effects? What is useEffect? How do you use it to perform side effects? Mar 19, 2025 pm 03:58 PM

The article discusses useEffect in React, a hook for managing side effects like data fetching and DOM manipulation in functional components. It explains usage, common side effects, and cleanup to prevent issues like memory leaks.

How does the React reconciliation algorithm work? How does the React reconciliation algorithm work? Mar 18, 2025 pm 01:58 PM

The article explains React's reconciliation algorithm, which efficiently updates the DOM by comparing Virtual DOM trees. It discusses performance benefits, optimization techniques, and impacts on user experience.Character count: 159

What are higher-order functions in JavaScript, and how can they be used to write more concise and reusable code? What are higher-order functions in JavaScript, and how can they be used to write more concise and reusable code? Mar 18, 2025 pm 01:44 PM

Higher-order functions in JavaScript enhance code conciseness, reusability, modularity, and performance through abstraction, common patterns, and optimization techniques.

How does currying work in JavaScript, and what are its benefits? How does currying work in JavaScript, and what are its benefits? Mar 18, 2025 pm 01:45 PM

The article discusses currying in JavaScript, a technique transforming multi-argument functions into single-argument function sequences. It explores currying's implementation, benefits like partial application, and practical uses, enhancing code read

What is useContext? How do you use it to share state between components? What is useContext? How do you use it to share state between components? Mar 19, 2025 pm 03:59 PM

The article explains useContext in React, which simplifies state management by avoiding prop drilling. It discusses benefits like centralized state and performance improvements through reduced re-renders.

How do you connect React components to the Redux store using connect()? How do you connect React components to the Redux store using connect()? Mar 21, 2025 pm 06:23 PM

Article discusses connecting React components to Redux store using connect(), explaining mapStateToProps, mapDispatchToProps, and performance impacts.

How do you prevent default behavior in event handlers? How do you prevent default behavior in event handlers? Mar 19, 2025 pm 04:10 PM

Article discusses preventing default behavior in event handlers using preventDefault() method, its benefits like enhanced user experience, and potential issues like accessibility concerns.

What are the advantages and disadvantages of controlled and uncontrolled components? What are the advantages and disadvantages of controlled and uncontrolled components? Mar 19, 2025 pm 04:16 PM

The article discusses the advantages and disadvantages of controlled and uncontrolled components in React, focusing on aspects like predictability, performance, and use cases. It advises on factors to consider when choosing between them.

See all articles