Hi @max_matinpalo,
There is more overhead in establishing new connections than reusing an existing connection, so the general advice is actually to have a pool of established ready-to-use connections where possible per Connection Pool Overview. Connection pooling support is included in most of the official MongoDB drivers.
Connection options and defaults may vary by driver and version so I recommend consulting the relevant version of driver documentation. For more information see Connection Options in the Node.js driver.
Each open connection consumes at least 1MB of RAM on the MongoDB server, so a large number of connections can impact the amount of available RAM for your working set. Related discussion: Memory allocated per connection - #2 by Stennie_X.
For some suggestions around managing connections, please see Tuning Your Connection Pool Settings.
Regards,
Stennie