Initiales Projekt-Skelett appRobotFileservice

Ausgelagertes Programm-/File-Handling (vormals GCode.receiveFC im appRobotDriver,
ToDo_4 / ToDo_6b). Express-Service mit .gcode + .json-Storage, aktivem Programm +
Cursor, Teaching (FPoint) und Playback. Speicherung in Grad, driver-nativ (Radian)
zum Driver. Konzept/API unter doc/draft_filehandeling*.md. Tests: jest (13 gruen).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
chk
2026-06-14 10:12:41 +02:00
commit b68bdfa9b4
20 changed files with 6085 additions and 0 deletions

18
package.json Normal file
View File

@@ -0,0 +1,18 @@
{
"name": "approbotfileservice",
"version": "0.1.0",
"description": "Programm-/File-Handling-Service für den AppRobot: speichert G-Code-Programme (.gcode + .json), hält das aktive Programm + Cursor und unterstützt Teaching/Playback. Wird vom appRobotDriver als Gateway angesprochen (FCodes).",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "jest"
},
"author": "Ch Kendel",
"license": "ISC",
"dependencies": {
"express": "^4.18.2"
},
"devDependencies": {
"jest": "^29.7.0"
}
}