Allows printing from an Electron App in silent mode using the default printer of the system.
$ npm install --save electron-print
const printer = require('electron-print');
app.on('ready', function() {
printer.print("Text sent to printer.")
});
1.0.3