Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@clearroad/api-storage-mongodb

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@clearroad/api-storage-mongodb

ClearRoad API mongodb Connector

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

ClearRoad API Storage MongoDB

Note: 5 databases will be created to store the data, all prefixed with the database value (see below). Make sure you use credentials that have the rights to create databases.

Install

npm install @clearroad/api-storage-mongodb

Usage

  • Import the library:

Using with es6 / TypeScript

import { ClearRoad } from '@clearroad/api';
import storage from '@clearroad/api-storage-mongodb';

Using with require

const ClearRoad = require('@clearroad/api').ClearRoad;
const storage = require('@clearroad/api-storage-mongodb').default;
  • Create a ClearRoad instance:
const options = {
  localStorage: {
    type: storage,
    url: 'mongodb://user:password@host.com:27017',
    database: 'MyDatabase'
  }
};
const cr = new ClearRoad('url', 'accessToken', options);

Options

PropertyTypeDescriptionRequired
localStorage.typestringConnector type. Use mongodbYes
localStorage.urlstringDatabase url connection stringYes
localStorage.databasestringDatabase nameYes
localStorage.clientOptionsMongoClientOptions (see connect options)Additional configuration for connectionNo
localStorage.documentsCollectionNamestringDatabase collection name to storage all documents. Default is DocumentsNo
localStorage.attachmentsCollectionNamestringDatabase table name to storage all attachments. Default is AttachmentsNo
localStorage.timestampsbooleanAdd createdAt and updateAt fields on each row. Default is trueNo

Keywords

clearroad

FAQs

Package last updated on 23 Jan 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts