यह मोंगोडीबी प्रबंधन के लिए एक इलेक्ट्रॉन ऐप है, आप मोंगोडब और इलेक्ट्रॉन का उपयोग कैसे करें, इस पर एक उदाहरण के रूप में कोड की जांच कर सकते हैं।
https://github.com/officert/mongotron
मूल रूप से आप mongodb का उपयोग कर सकते हैं जैसा कि आप सामान्य रूप से मुख्य प्रक्रिया में node.js में करते हैं और फिर ipc के माध्यम से रेंडरर प्रक्रिया के साथ संचार करते हैं। मॉड्यूल।
उदाहरण के लिए:
रेंडरर प्रक्रिया
<html>
<head></head>
<body>
<script>
const ipc = require('electron').ipcRenderer;
const informationBtn = document.getElementById('information-dialog')
informationBtn.addEventListener('click', function (event) {
ipc.send('create-user')
})
</script>
</body>
<html>
मुख्य प्रक्रिया
const ipc = require('electron').ipcMain
const mongo = require('some-mongo-module')
ipc.on('create-user', function (event) {
/* MONGODB CODE */
})
मैं आपको आरंभ करने के लिए ऐप का उपयोग करने की सलाह दूंगा जिसे आप http://electron.atom.io/
में पा सकते हैं।