Main Class
The Documentation for the main class of abc.db
The main class of abc.db is where you connect to your MongoDB and pass any options you wish to passed into the connections (these are optional)
Requiring/Importing
Constructing the Class
To begin using abc.db, you need a mongo db cluster which you can get for free here or host locally.
v1
Class Events
Since v2, Events have been removed, but will be left here as a reference
The main class has some events as it extends the event emitter, below you can find them
Connected
This event is triggered when the db connects successfully, also includes when the connection reconnects after being closed.
Disconnected
This event is triggered when the db disconnects and includes when the connection is closed.
Reconnected
This event is triggered when the db reconnects after being disconnected, excludes when the connection is closed
Methods
Connect - Promise
To use any methods without an error, you must call this method and make sure it is run with await or .then (treated as a promise essentially)
Collections
To make a new collection (you can have as many of these as you want) type:
v1
Refer to the Collection documentation for more info
Last updated
Was this helpful?