Starting: Connections
Connect your database.🪶 After calling the instance you must
connect with your database:Call the .connect method where the parameter must be the name of your database.
1 const merlin = new MerlinDB( ) ;2 merlin.connect( "my-database-name") .then( e => { console.log( e) } ) ; 3 //{status: 200, message: 'Database connected'};