1.3.0 • Published 5 years ago

@syolab/mongoclient v1.3.0

Weekly downloads
1
License
ISC
Repository
-
Last release
5 years ago

Mongo Db Client

This is a Mongo DB Client wrapper

Installing with npm

npm install @syolab/mongoclient --save

using in node js

create client

const mongoClient = require('mongoClient');

let client = await new mongoClient({
        url: 'mongo db connectionstring',
        db: 'database name',
        collection: 'collection name'
      });

get the collection

let collection = await client.getCollection();

then, for example, do a query

let res = await  collection.findOne()

don't forget to close the connection on termination

client.closeConnection()
1.3.0

5 years ago

1.2.0

5 years ago

1.1.0

5 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago