节点触摸
一个node.js库,用于在Brother标签打印机上打印ptouch标签。
描述
一个node.js库,用于在Brother标签打印机上打印ptouch标签。
现在测试:
QL-820NWB
安装
安装使用软件包管理器。 安装npm后只需键入以下命令。
npm install node-ptouch
例子
var Ptouch = require ( 'node-ptouch' ) ;
var net = require ( 'net' ) ;
// generate ptouch code
var ptouch = new Ptouch ( 1 , { copies : 2 } ) ; // select template 1 for two copies
ptouch . insertData ( 'myObjectName' , 'hello world' )
1