Mongoose Close Connection

mongoose, node.js

Solution

To close all connections in the Mongoose connection pool:

mongoose.disconnect();

Docs here.

Problem

I have A Mongoose Connection and at some point in my program I need to close it. after logging the mongoose object several times, I have found that the following workd ``` mongoose.connection.base.connections[1].close(); ``` Is There A Cleaner way to do this?

Original source