Mongodb
Connections
Configuring MongoDB connections in Orionjs
Orionjs provides a flexible system for configuring and managing MongoDB connections. This allows you to connect to multiple MongoDB instances or databases as needed.
Default Connection
By default, Orionjs will look for a MongoDB connection string in the MONGO_URL
or env.mongo_url
environment variable. This is the simplest way to get started:
You don’t need any additional code to use the default connection - all collections will use it automatically unless specified otherwise.
Connection Initialization
Connections are not started until you call any method in a collection or explicitly call startConnection
on the collection. This lazy initialization prevents unnecessary connections when a collection is defined but not used.
Was this page helpful?