Jaritas
Jaritas
Another word: ```Inflector::singularize('metadata')``` returns ```metadatum```. Using v2
The solution is load the printer module using electron remote component ```javascript const { remote } = require('electron') remote.require('printer').printDirect({}) ``` >Note: the printer module is only available in main process,...
@muyaedward You are using Electron or is a web page?
@muyaedward When you create a project in electron, you must be consider this: all electron apps have a main process and n+1 child process. The main process contains all node...