You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, can anyone tell me if this should work on Windows?
The readme seems to suggest that Windows is supported, but when trying to print using Printer.printFile() it works fine on macOS, but gives me the message 'Error: Not yet implemented on Windows'.
My code is essentially:
const Printer = require('@thiagoelg/node-printer');
Printer.printFile({
filename: newFilename,
// printer: printerName, // printer name, if missing then will print to default printer
options: {
'fit-to-page': true,
},
success: function (jobID) {
resolve(jobID);
},
error: function (err) {
reject(err);
},
})
This is on an up-to-date version of Windows 10 on a Surface Go tablet.
If this package does not support Windows it would be useful to know, thank you.
The text was updated successfully, but these errors were encountered:
Hello, can anyone tell me if this should work on Windows?
The readme seems to suggest that Windows is supported, but when trying to print using
Printer.printFile()
it works fine on macOS, but gives me the message 'Error: Not yet implemented on Windows'.My code is essentially:
This is on an up-to-date version of Windows 10 on a Surface Go tablet.
If this package does not support Windows it would be useful to know, thank you.
The text was updated successfully, but these errors were encountered: