Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wll8/demo-print
填写任意页面之后,向页面注入一个打印方法,直接调用即可打印。
https://github.com/wll8/demo-print
Last synced: about 5 hours ago
JSON representation
填写任意页面之后,向页面注入一个打印方法,直接调用即可打印。
- Host: GitHub
- URL: https://github.com/wll8/demo-print
- Owner: wll8
- Created: 2024-02-02T09:55:03.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-08-09T01:09:24.000Z (3 months ago)
- Last Synced: 2024-08-09T02:31:46.534Z (3 months ago)
- Language: JavaScript
- Size: 6.68 MB
- Stars: 6
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
填写任意页面之后,向页面注入一个打印方法,直接调用即可打印任意 html 节点。
## 使用
首先保证你的打印机已连接并正常可用。例如在百度上添加一个打印功能:
第一步:
把 https://baidu.com 填入 package.json 文件的 page 处,运行 main.exe。
第二步:
在页面中调用 tool.print() 方法,传入要打印的 html 即可。
例如:
```js
window.tool.print(document.querySelector(`span`));
```## 环境
当前测试过的环境如下:
- os: win11 / win10 / win7 x64
- node: 13.14+打印机:
- 厂家: Xprinter 芯烨
- 型号: XP-58IIH 热敏小票打印机
- 接口: USB
- 纸宽: 58mm## 开发
浏览器的代码在 preload.js 中。服务器的代码在 sys.js 中,由 nodejs 运行,主要使用了 node-escpos 实现打印功能。
exe 使用方式可参考 [sys-shim](https://github.com/wll8/sys-shim)。
## 其他
如果需要使用 A4 纸打印,可以查看 [a4](https://github.com/wll8/demo-print/blob/a4/page.html#L38) 分支。