Package Exports
- wwebjs-mongo
- wwebjs-mongo/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (wwebjs-mongo) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
wwebjs-mongo
A MongoDB plugin for whatsapp-web.js
Quick Links
- Guide / Getting Started (work in progress)
- GitHub
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,
backupSyncMs: 300000
})
});
client.initialize();
});