render logs into images

This commit is contained in:
seb
2026-07-11 05:41:17 +02:00
parent 9466d295a4
commit a46e2705a4
12 changed files with 1366 additions and 249 deletions

View File

@@ -3,15 +3,15 @@
"version": "1.0.0",
"description": "Minimal ESC/POS print proxy: forwards raw jobs to a target printer and logs each job to disk (cut command or connection drop delimits a job).",
"type": "module",
"main": "index.js",
"main": "src/server.js",
"scripts": {
"start": "node index.js",
"test:send": "node test-send.mjs",
"parse": "node parse-log.mjs"
"start": "node src/server.js",
"test:send": "node test-send.mjs"
},
"license": "MIT",
"dependencies": {
"chalk": "^5.6.2",
"dotenv": "^17.4.2"
"dotenv": "^17.4.2",
"qrcode": "^1.5.4",
"sharp": "^0.35.3"
}
}