Writing to a .txt file before node.js exits

3.4k views Asked by At

I'd like my server to save some essential data when node exits and load them next time.

I tried what the answer of this question suggested, but the server seems to close before it is able to write to the file.

This is the exact code I am trying:

process.stdin.resume();

function exitHandler(options, err) {
    if(!serverUp){return;}
    serverUp = false;
    fs.writeFile('server.txt', String(search_index),function (err) {
        console.log("debug") // <-- This doesn't happen
        process.exit();
    });   
}

//do something when app is closing
process.on('exit', exitHandler.bind(null,{cleanup:true}));

//catches ctrl+c event
process.on('SIGINT', exitHandler.bind(null, {exit:true}));

//catches uncaught exceptions
process.on('uncaughtException', exitHandler.bind(null, {exit:true}));
1

There are 1 answers

0
Lexi Brush On

I think if you tried fs.writeFileSync it would solve this.

https://nodejs.org/api/fs.html#fs_fs_writefilesync_filename_data_options

The code would then be:

function exitHandler(options, err) {
    if(!serverUp){return;}
    serverUp = false;
    fs.writeFileSync('server.txt', String(search_index));
    console.log("debug");
    process.exit();   // Don't think you'll need this line any more
}

The issue I believe is because of the async nature. By using the synchronous version of writeFile you're forcing the process to finish executing everything before exiting.