Skip to content

jtouris/wwebjs-mongo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

wwebjs-mongo

A MongoDB plugin for whatsapp-web.js!

Use MongoStore to save your WhatsApp MultiDevice session on a MongoDB Database.

Quick Links

Installation

The module is now available on npm! npm i wwebjs-mongo

Example usage

const { Client, RemoteAuth } = require('whatsapp-web.js');
const { MongoStore } = require('wwebjs-mongo');
const mongoose = require('mongoose');

mongoose.connect(process.env.MONGODB_URI).then(() => {
    const store = new MongoStore({ mongoose: mongoose });
    const client = new Client({
        authStrategy: new RemoteAuth({
            store: store,
            backupSyncIntervalMs: 300000
        })
    });

    client.initialize();
});

Delete Remote Session

How to force delete a specific remote session on the Database:

await store.delete({session: 'yourSessionName'});

About

A MongoDB plugin for whatsapp-web.js

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published