feat: Add Node.js worker implementation and integrate worker type selection in UI

This commit is contained in:
Holger Börchers
2026-02-24 20:21:21 +01:00
parent c09fe5fd36
commit f7b038faf9
4 changed files with 361 additions and 20 deletions

View File

@@ -0,0 +1,18 @@
{
"name": "child-worker-node",
"version": "1.0.0",
"description": "Node.js implementation of CommTester ChildWorker",
"main": "child-worker.js",
"scripts": {
"start": "node child-worker.js"
},
"keywords": [
"ipc",
"named-pipe",
"child-worker"
],
"license": "MIT",
"engines": {
"node": ">=18.0.0"
}
}