Socket
Socket
Sign inDemoInstall

@types/mongodb

Package Overview
Dependencies
Maintainers
1
Versions
200
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/mongodb

TypeScript definitions for MongoDB


Version published
Maintainers
1
Created

What is @types/mongodb?

@types/mongodb provides TypeScript definitions for the MongoDB Node.js driver, allowing developers to use MongoDB with type safety and autocompletion in TypeScript projects.

What are @types/mongodb's main functionalities?

Connecting to MongoDB

This feature allows you to connect to a MongoDB database using the MongoClient class. The code sample demonstrates how to establish a connection and handle it properly.

const { MongoClient } = require('mongodb');
const uri = 'your_mongodb_uri';
const client = new MongoClient(uri, { useNewUrlParser: true, useUnifiedTopology: true });

async function run() {
  try {
    await client.connect();
    console.log('Connected to MongoDB');
  } finally {
    await client.close();
  }
}
run().catch(console.dir);

CRUD Operations

This feature allows you to perform CRUD (Create, Read, Update, Delete) operations on a MongoDB collection. The code sample demonstrates how to insert, find, update, and delete documents.

const { MongoClient } = require('mongodb');
const uri = 'your_mongodb_uri';
const client = new MongoClient(uri, { useNewUrlParser: true, useUnifiedTopology: true });

async function run() {
  try {
    await client.connect();
    const database = client.db('sample_db');
    const collection = database.collection('sample_collection');

    // Create
    const doc = { name: 'Alice', age: 25 };
    const result = await collection.insertOne(doc);
    console.log(`New document created with the following id: ${result.insertedId}`);

    // Read
    const query = { name: 'Alice' };
    const user = await collection.findOne(query);
    console.log(user);

    // Update
    const updateDoc = { $set: { age: 26 } };
    const updateResult = await collection.updateOne(query, updateDoc);
    console.log(`Matched ${updateResult.matchedCount} document and modified ${updateResult.modifiedCount} document`);

    // Delete
    const deleteResult = await collection.deleteOne(query);
    console.log(`Deleted ${deleteResult.deletedCount} document`);
  } finally {
    await client.close();
  }
}
run().catch(console.dir);

Indexing

This feature allows you to create indexes on collections to improve query performance. The code sample demonstrates how to create an index on the 'name' field of a collection.

const { MongoClient } = require('mongodb');
const uri = 'your_mongodb_uri';
const client = new MongoClient(uri, { useNewUrlParser: true, useUnifiedTopology: true });

async function run() {
  try {
    await client.connect();
    const database = client.db('sample_db');
    const collection = database.collection('sample_collection');

    // Create an index on the 'name' field
    const indexName = await collection.createIndex({ name: 1 });
    console.log(`Index created: ${indexName}`);
  } finally {
    await client.close();
  }
}
run().catch(console.dir);

Other packages similar to @types/mongodb

FAQs

Package last updated on 28 May 2021

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc