
Security News
libxml2 Maintainer Ends Embargoed Vulnerability Reports, Citing Unsustainable Burden
Libxml2’s solo maintainer drops embargoed security fixes, highlighting the burden on unpaid volunteers who keep critical open source software secure.
escpos-buffer-image
Advanced tools
Library to provide image support for escpos-buffer
Supported image types:
Run command bellow on your project folder
yarn add escpos-buffer escpos-buffer-image
or
npm install escpos-buffer escpos-buffer-image
const { Printer, InMemory } = require('escpos-buffer');
const { ImageManager } = require('escpos-buffer-image');
const connection = new InMemory();
const imageManager = new ImageManager();
const printer = await Printer.CONNECT('MP-4200 TH', connection, imageManager);
Use the WebUSB protocol in Chrome to connect directly to the printer.
import { Printer, Model, WebUSB } from 'escpos-buffer';
import { ImageManager } from 'escpos-buffer-image';
const device = await navigator.usb.requestDevice({
filters: [
{
vendorId: VENDOR_ID,
},
],
});
const connection = new WebUSB(device);
const imageManager = new ImageManager();
const printer = await Printer.CONNECT('TM-T20', connection, imageManager);
const { Image } = require('escpos-buffer');
// Following setup above...
await printer.setColumns(48);
const imageData = await imageManager.loadImage('IMAGE PATH');
const image = new Image(imageData);
await printer.draw(image);
if (feed > 0) {
await printer.feed(feed);
}
await printer.cutter();
await printer.buzzer();
await printer.drawer(Drawer.First);
// For buffered connection (output to stdout)
process.stdout.write(connection.buffer());
// to print, run command bellow on terminal
// For Unix
//> node examples/image.js | lp -d PRINTER_NAME
// For Windows
//> node examples\image.js > output.bin
//> print /d:\\%COMPUTERNAME%\PRINTER_NAME output.bin
clean
- remove coverage data, Jest cache and transpiled files,build
- transpile TypeScript to ES6,build:watch
- interactive watch mode to automatically transpile source files,lint
- lint source files and tests,style:fix
- fix prettier style problems,style:check
- check for prettier style,test
- run tests,test:watch
- interactive watch mode to automatically re-run teststest:debug
- run tests debuggingLicensed under the MIT. See the LICENSE file for details.
FAQs
Provide image support for escpos-buffer
The npm package escpos-buffer-image receives a total of 946 weekly downloads. As such, escpos-buffer-image popularity was classified as not popular.
We found that escpos-buffer-image demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Libxml2’s solo maintainer drops embargoed security fixes, highlighting the burden on unpaid volunteers who keep critical open source software secure.
Research
Security News
Socket investigates hidden protestware in npm packages that blocks user interaction and plays the Ukrainian anthem for Russian-language visitors.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.