@ph4ntomiki/mongodb-data-api-client

0.0.7 • Public • Published

The package that uses MongoDB Atlas Data API to access your data

First you need to get an API key and App ID for the service, explained how here.

After that import/require the package and use it like this:

const MongoClient = require('@ph4ntomiki/mongodb-data-api-client');
const client = MongoClient('app_id', 'api_key', 'clusterName'); //cluster defaults to 'Cluster0'
const db = client.db('dbName');
const collection = db.collection('collectionName');

const results = await collection.find({title: /a/i});

You can also create client with custom fetch implementation, like for ex. for Cloudflare Workers like this:

const client = MongoClient('app_id', 'api_key', 'clusterName', {'fetch': fetch.bind(self)});

Or if you want default clusterName you can pass undefined or null at that place.

Package Sidebar

Install

npm i @ph4ntomiki/mongodb-data-api-client

Weekly Downloads

0

Version

0.0.7

License

ISC

Unpacked Size

9.34 kB

Total Files

3

Last publish

Collaborators

  • ph4ntomiki