NEWS
Einfügen von JS-Klassen aus eigenem NPM-Modul
-
@uwe72 sagte in Einfügen von JS-Klassen aus eigenem NPM-Modul:
@ticaki Ich hätte dich zuerst so verstanden, dass Du eine JS-Lösung hast wo alles in iobroker abläuft. Bei @fastfoot liegt das Script ja außerhalb von iobroker.
wo das script(die lib) liegt ist letztlich doch egal. Ich hatte den Kniff mit der Spiegelung deshalb nicht genutzt weil es dir ja um TS geht und da willst(kannst!) du den Source halt nicht im Editor haben. Also, lib in TS schreiben(die ändert sich ja nicht so oft) und mit
tsccompilieren. Dann im Editor ganz normal mit require die js-datei importieren. Wichtig bei tsc ist die Option zu nutzen welche dir die lib als common js schreibt da der Adapter keine esm Module supported. Einfach mal probieren,evtl.funktioniert das schon im Standard so(tsc lib.ts)TS-Lösung funktioniert!
Wie von @ticaki vorgeschlagen funktioniert. D.h. TS-Script liegt extern und muss transpilierst werden.
/home/uwe72/clement/docker/my-datas/iobroker/iobrokerdata/my_scripts/buch.ts
class Buch { public getCurrentWeekdayAsString() : string { var now = new Date(); let weekday = now.getDay(); return this.getWeekdayAsString(weekday); } private getWeekdayAsString(weekday: number) : string { let weekdayAsString; if (weekday == 1) { weekdayAsString = "Montag"; } else if (weekday == 2) { weekdayAsString = "Dienstag"; } else if (weekday == 3) { weekdayAsString = "Mittwoch"; } else if (weekday == 4) { weekdayAsString = "Donnerstag"; } else if (weekday == 5) { weekdayAsString = "Freitag"; } else if (weekday == 6) { weekdayAsString = "Samstag"; } else if (weekday == 7) { weekdayAsString = "Sonntag"; } else if (weekday == 0) { weekdayAsString = "Sonntag"; } return weekdayAsString; } } module.exports = { Buch};Dann in der Konsole folgendes eingeben (habe ich noch nicht im Detail verstanden):
npx tsc buch.ts--> Es entsteht die Datei buch.js
ioBroker-Script (TypeScript!)
const { Buch } = require('/opt/iobroker/my_scripts/buch.js'); const myBook = new Buch(); log("Heute ist: " + myBook.getCurrentWeekdayAsString());Logausgabe:
21:03:04.274 info javascript.1 (65633) script.js.common.TEST_IMPORT_TS: Heute ist: SamstagBin jetzt super glücklich! DANKE EUCH BEIDEN für das tolle und konstruktive Miteinander!
@ticaki
In dem Fall kann man diese auch gleich in JS schreiben und in die TS Scripte importieren.
Erst jetzt kapiert. Ja in der Tat! Wobei in meinem Fall ich schon alle Scripte in TS habe. -
TS-Lösung funktioniert!
Wie von @ticaki vorgeschlagen funktioniert. D.h. TS-Script liegt extern und muss transpilierst werden.
/home/uwe72/clement/docker/my-datas/iobroker/iobrokerdata/my_scripts/buch.ts
class Buch { public getCurrentWeekdayAsString() : string { var now = new Date(); let weekday = now.getDay(); return this.getWeekdayAsString(weekday); } private getWeekdayAsString(weekday: number) : string { let weekdayAsString; if (weekday == 1) { weekdayAsString = "Montag"; } else if (weekday == 2) { weekdayAsString = "Dienstag"; } else if (weekday == 3) { weekdayAsString = "Mittwoch"; } else if (weekday == 4) { weekdayAsString = "Donnerstag"; } else if (weekday == 5) { weekdayAsString = "Freitag"; } else if (weekday == 6) { weekdayAsString = "Samstag"; } else if (weekday == 7) { weekdayAsString = "Sonntag"; } else if (weekday == 0) { weekdayAsString = "Sonntag"; } return weekdayAsString; } } module.exports = { Buch};Dann in der Konsole folgendes eingeben (habe ich noch nicht im Detail verstanden):
npx tsc buch.ts--> Es entsteht die Datei buch.js
ioBroker-Script (TypeScript!)
const { Buch } = require('/opt/iobroker/my_scripts/buch.js'); const myBook = new Buch(); log("Heute ist: " + myBook.getCurrentWeekdayAsString());Logausgabe:
21:03:04.274 info javascript.1 (65633) script.js.common.TEST_IMPORT_TS: Heute ist: SamstagBin jetzt super glücklich! DANKE EUCH BEIDEN für das tolle und konstruktive Miteinander!
@ticaki
In dem Fall kann man diese auch gleich in JS schreiben und in die TS Scripte importieren.
Erst jetzt kapiert. Ja in der Tat! Wobei in meinem Fall ich schon alle Scripte in TS habe.Noch eine Nachfrage für ein blödes Beispiel:
Möchte besipielsweise so was verwenden in meinen Scripten:
sendTo('telegram.0', "TEST");/home/uwe72/clement/docker/my-datas/iobroker/iobrokerdata/my_scripts/buch.ts
class Buch { public getCurrentWeekdayAsString() : string { var now = new Date(); let weekday = now.getDay(); sendTo('telegram.0', "TEST"); // <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< return this.getWeekdayAsString(weekday); } private getWeekdayAsString(weekday: number) : string { let weekdayAsString; if (weekday == 1) { weekdayAsString = "Montag"; } else if (weekday == 2) { weekdayAsString = "Dienstag"; } else if (weekday == 3) { weekdayAsString = "Mittwoch"; } else if (weekday == 4) { weekdayAsString = "Donnerstag"; } else if (weekday == 5) { weekdayAsString = "Freitag"; } else if (weekday == 6) { weekdayAsString = "Samstag"; } else if (weekday == 7) { weekdayAsString = "Sonntag"; } else if (weekday == 0) { weekdayAsString = "Sonntag"; } return weekdayAsString; } } module.exports = { Buch};Transpilieren:
npx tsc buch.tsFehlermeldung:
root@iobroker:/opt/iobroker/my_scripts# npx tsc buch.ts buch.ts:2:5 - error TS2304: Cannot find name 'sendTo'. sendTo('telegram.0', "TEST"); ~~~~~~ Found 1 error in buch.tsVermutlich fehlt hier ein "Import-Statement" von den ganzen "Allgemeinen-Sachen"?
-
Noch eine Nachfrage für ein blödes Beispiel:
Möchte besipielsweise so was verwenden in meinen Scripten:
sendTo('telegram.0', "TEST");/home/uwe72/clement/docker/my-datas/iobroker/iobrokerdata/my_scripts/buch.ts
class Buch { public getCurrentWeekdayAsString() : string { var now = new Date(); let weekday = now.getDay(); sendTo('telegram.0', "TEST"); // <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< return this.getWeekdayAsString(weekday); } private getWeekdayAsString(weekday: number) : string { let weekdayAsString; if (weekday == 1) { weekdayAsString = "Montag"; } else if (weekday == 2) { weekdayAsString = "Dienstag"; } else if (weekday == 3) { weekdayAsString = "Mittwoch"; } else if (weekday == 4) { weekdayAsString = "Donnerstag"; } else if (weekday == 5) { weekdayAsString = "Freitag"; } else if (weekday == 6) { weekdayAsString = "Samstag"; } else if (weekday == 7) { weekdayAsString = "Sonntag"; } else if (weekday == 0) { weekdayAsString = "Sonntag"; } return weekdayAsString; } } module.exports = { Buch};Transpilieren:
npx tsc buch.tsFehlermeldung:
root@iobroker:/opt/iobroker/my_scripts# npx tsc buch.ts buch.ts:2:5 - error TS2304: Cannot find name 'sendTo'. sendTo('telegram.0', "TEST"); ~~~~~~ Found 1 error in buch.tsVermutlich fehlt hier ein "Import-Statement" von den ganzen "Allgemeinen-Sachen"?
https://github.com/ioBroker/ioBroker.javascript/blob/master/lib/javascript.d.ts
tsconfig.json
{ "compileOnSave": true, "compilerOptions": { "noEmit": true, "allowJs": true, "checkJs": true, "module": "commonjs", "moduleResolution": "node", "esModuleInterop": true, "resolveJsonModule": true, "strict": true, "noImplicitAny": false, "target": "es2018", "typeRoots": [ ".iobroker/types", "node_modules/@types" ] }, "include": [ "**/*.js", "**/*.ts", ".iobroker/types/javascript.d.ts" ], "exclude": [ "node_modules/**" ] }Wenn du VS Code benutzt kannst du dir mit der iobrokererweiterungen, das auch angucken wie das da gelöst ist, weiß aber natürlich nicht ob das compilieren geht. Wird in vs dann aber nicht als Fehler angezeigt.
-
https://github.com/ioBroker/ioBroker.javascript/blob/master/lib/javascript.d.ts
tsconfig.json
{ "compileOnSave": true, "compilerOptions": { "noEmit": true, "allowJs": true, "checkJs": true, "module": "commonjs", "moduleResolution": "node", "esModuleInterop": true, "resolveJsonModule": true, "strict": true, "noImplicitAny": false, "target": "es2018", "typeRoots": [ ".iobroker/types", "node_modules/@types" ] }, "include": [ "**/*.js", "**/*.ts", ".iobroker/types/javascript.d.ts" ], "exclude": [ "node_modules/**" ] }Wenn du VS Code benutzt kannst du dir mit der iobrokererweiterungen, das auch angucken wie das da gelöst ist, weiß aber natürlich nicht ob das compilieren geht. Wird in vs dann aber nicht als Fehler angezeigt.
@ticaki Nun bin ich zu müde. Komme da nicht weiter, habe keine Ahnung und leider fehlen mir hier (Grund-) kenntnisse.
{ "compileOnSave": true, "compilerOptions": { "noEmit": true, "allowJs": true, "checkJs": true, "module": "commonjs", "moduleResolution": "node", "esModuleInterop": true, "resolveJsonModule": true, "strict": true, "noImplicitAny": false, "target": "es2018", "typeRoots": [ ".iobroker/types", "node_modules/@types" ] }, "include": [ "buch.ts", "/opt/iobroker/node_modules/iobroker.javascript/lib/javascript.d.ts" ], "exclude": [ ] }Habe ein tsconfig.json File und transpiliere dies
npx tsc --build tsconfig.json--> Nur Fehlermeldungen. Habe keine Ahnung wie ich "javascript.d.ts" einbinde

-
@ticaki Nun bin ich zu müde. Komme da nicht weiter, habe keine Ahnung und leider fehlen mir hier (Grund-) kenntnisse.
{ "compileOnSave": true, "compilerOptions": { "noEmit": true, "allowJs": true, "checkJs": true, "module": "commonjs", "moduleResolution": "node", "esModuleInterop": true, "resolveJsonModule": true, "strict": true, "noImplicitAny": false, "target": "es2018", "typeRoots": [ ".iobroker/types", "node_modules/@types" ] }, "include": [ "buch.ts", "/opt/iobroker/node_modules/iobroker.javascript/lib/javascript.d.ts" ], "exclude": [ ] }Habe ein tsconfig.json File und transpiliere dies
npx tsc --build tsconfig.json--> Nur Fehlermeldungen. Habe keine Ahnung wie ich "javascript.d.ts" einbinde

@uwe72
Morgen kann ich das mal ausprobieren, aber ich bin schon vor 2h müde gewesen. :) -
Anbei nochmals das nicht funktionierende Beispiel und den aktuellen Stand in übersichtlicher Form:
Hier mein externes TS-File.
class Buch { public getCurrentWeekdayAsString() : string { var now = new Date(); let weekday = now.getDay(); sendTo("email.0", { from: "uwe.clement@gmail.com", to: "uwe.clement@gmail.com", subject: "Test1", html: "test2" }); return this.getWeekdayAsString(weekday); } public getWeekdayAsString(weekday: number) : string { let weekdayAsString; if (weekday == 1) { weekdayAsString = "Montag"; } else if (weekday == 2) { weekdayAsString = "Dienstag"; } else if (weekday == 3) { weekdayAsString = "Mittwoch"; } else if (weekday == 4) { weekdayAsString = "Donnerstag"; } else if (weekday == 5) { weekdayAsString = "Freitag"; } else if (weekday == 6) { weekdayAsString = "Samstag"; } else if (weekday == 7) { weekdayAsString = "Sonntag"; } else if (weekday == 0) { weekdayAsString = "Sonntag"; } return weekdayAsString; } } module.exports = { Buch};Ohne das "sendTo" funktionierte es. Mit eben nicht.
Habe im gleichen Verzeichnis diese Datei tsconfig.json:
{ "compileOnSave": true, "compilerOptions": { "noEmit": true, "allowJs": true, "checkJs": true, "module": "commonjs", "moduleResolution": "node", "esModuleInterop": true, "resolveJsonModule": true, "strict": true, "noImplicitAny": false, "target": "es2018", "typeRoots": [ ".iobroker/types", "node_modules/@types" ] }, "include": [ "**/*.js", "**/*.ts", ".iobroker/types/javascript.d.ts" ], "exclude": [ "node_modules/**" ] }Auf der Konsole gebe ich folgendes ein:
npx tsc --build tsconfig.jsonFührt zu diesen Fehlern:
buch.ts:7:21 - error TS2304: Cannot find name 'sendTo'. 7 sendTo("email.0", { ~~~~~~ buch.ts:42:1 - error TS2580: Cannot find name 'module'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`. 42 module.exports = { Buch}; ~~~~~~ Found 2 errors.Beide Dateien liegen im gleichen Verzeichnis, in dem ich auch den Befehl "npx tsc --build tsconfig.json" eingebe:

-
Anbei nochmals das nicht funktionierende Beispiel und den aktuellen Stand in übersichtlicher Form:
Hier mein externes TS-File.
class Buch { public getCurrentWeekdayAsString() : string { var now = new Date(); let weekday = now.getDay(); sendTo("email.0", { from: "uwe.clement@gmail.com", to: "uwe.clement@gmail.com", subject: "Test1", html: "test2" }); return this.getWeekdayAsString(weekday); } public getWeekdayAsString(weekday: number) : string { let weekdayAsString; if (weekday == 1) { weekdayAsString = "Montag"; } else if (weekday == 2) { weekdayAsString = "Dienstag"; } else if (weekday == 3) { weekdayAsString = "Mittwoch"; } else if (weekday == 4) { weekdayAsString = "Donnerstag"; } else if (weekday == 5) { weekdayAsString = "Freitag"; } else if (weekday == 6) { weekdayAsString = "Samstag"; } else if (weekday == 7) { weekdayAsString = "Sonntag"; } else if (weekday == 0) { weekdayAsString = "Sonntag"; } return weekdayAsString; } } module.exports = { Buch};Ohne das "sendTo" funktionierte es. Mit eben nicht.
Habe im gleichen Verzeichnis diese Datei tsconfig.json:
{ "compileOnSave": true, "compilerOptions": { "noEmit": true, "allowJs": true, "checkJs": true, "module": "commonjs", "moduleResolution": "node", "esModuleInterop": true, "resolveJsonModule": true, "strict": true, "noImplicitAny": false, "target": "es2018", "typeRoots": [ ".iobroker/types", "node_modules/@types" ] }, "include": [ "**/*.js", "**/*.ts", ".iobroker/types/javascript.d.ts" ], "exclude": [ "node_modules/**" ] }Auf der Konsole gebe ich folgendes ein:
npx tsc --build tsconfig.jsonFührt zu diesen Fehlern:
buch.ts:7:21 - error TS2304: Cannot find name 'sendTo'. 7 sendTo("email.0", { ~~~~~~ buch.ts:42:1 - error TS2580: Cannot find name 'module'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`. 42 module.exports = { Buch}; ~~~~~~ Found 2 errors.Beide Dateien liegen im gleichen Verzeichnis, in dem ich auch den Befehl "npx tsc --build tsconfig.json" eingebe:

"include": [ "**/*.js", "**/*.ts", ".iobroker/types/javascript.d.ts" ],da muß die javascript.d.ts datei sein. Kannst das natürlich anpassen.
-
Anbei nochmals das nicht funktionierende Beispiel und den aktuellen Stand in übersichtlicher Form:
Hier mein externes TS-File.
class Buch { public getCurrentWeekdayAsString() : string { var now = new Date(); let weekday = now.getDay(); sendTo("email.0", { from: "uwe.clement@gmail.com", to: "uwe.clement@gmail.com", subject: "Test1", html: "test2" }); return this.getWeekdayAsString(weekday); } public getWeekdayAsString(weekday: number) : string { let weekdayAsString; if (weekday == 1) { weekdayAsString = "Montag"; } else if (weekday == 2) { weekdayAsString = "Dienstag"; } else if (weekday == 3) { weekdayAsString = "Mittwoch"; } else if (weekday == 4) { weekdayAsString = "Donnerstag"; } else if (weekday == 5) { weekdayAsString = "Freitag"; } else if (weekday == 6) { weekdayAsString = "Samstag"; } else if (weekday == 7) { weekdayAsString = "Sonntag"; } else if (weekday == 0) { weekdayAsString = "Sonntag"; } return weekdayAsString; } } module.exports = { Buch};Ohne das "sendTo" funktionierte es. Mit eben nicht.
Habe im gleichen Verzeichnis diese Datei tsconfig.json:
{ "compileOnSave": true, "compilerOptions": { "noEmit": true, "allowJs": true, "checkJs": true, "module": "commonjs", "moduleResolution": "node", "esModuleInterop": true, "resolveJsonModule": true, "strict": true, "noImplicitAny": false, "target": "es2018", "typeRoots": [ ".iobroker/types", "node_modules/@types" ] }, "include": [ "**/*.js", "**/*.ts", ".iobroker/types/javascript.d.ts" ], "exclude": [ "node_modules/**" ] }Auf der Konsole gebe ich folgendes ein:
npx tsc --build tsconfig.jsonFührt zu diesen Fehlern:
buch.ts:7:21 - error TS2304: Cannot find name 'sendTo'. 7 sendTo("email.0", { ~~~~~~ buch.ts:42:1 - error TS2580: Cannot find name 'module'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`. 42 module.exports = { Buch}; ~~~~~~ Found 2 errors.Beide Dateien liegen im gleichen Verzeichnis, in dem ich auch den Befehl "npx tsc --build tsconfig.json" eingebe:

https://github.com/ticaki/script-library-example
Hab noch nicht versucht, das im iobroker einzubinden, das complilieren geht schon mal. Hab console und name aus der javascript-d.ts raus werfen müssen.Im Arbeitsverzeichnis
npx tsceingeben.Ne geht doch noch nicht. :)
-
https://github.com/ticaki/script-library-example
Hab noch nicht versucht, das im iobroker einzubinden, das complilieren geht schon mal. Hab console und name aus der javascript-d.ts raus werfen müssen.Im Arbeitsverzeichnis
npx tsceingeben.Ne geht doch noch nicht. :)
-
@uwe72
Hm im log steht doch alles? Es geht trotzdem noch nicht. -
@uwe72 sagte in Einfügen von JS-Klassen aus eigenem NPM-Modul:
@ticaki Ja, es kommt nun keine Fehlermeldung mehr. Die lib.js wird leider nicht erstellt
Jo, das hab ich jetzt alles hinbekommen. Aber der Javascript-Adapter kennt die iobroker eigenen Skriptbefehle nicht, wenn sie in einer externen Datei stecken. Nachvollziehbar.
Kann man zwar lösen in dem man beim Erzeugen der Klasse die Funktionen übergibt. Das ist aber nicht schön.
-
@uwe72 sagte in Einfügen von JS-Klassen aus eigenem NPM-Modul:
@ticaki Ja, es kommt nun keine Fehlermeldung mehr. Die lib.js wird leider nicht erstellt
Jo, das hab ich jetzt alles hinbekommen. Aber der Javascript-Adapter kennt die iobroker eigenen Skriptbefehle nicht, wenn sie in einer externen Datei stecken. Nachvollziehbar.
Kann man zwar lösen in dem man beim Erzeugen der Klasse die Funktionen übergibt. Das ist aber nicht schön.
-
@ticaki said in Einfügen von JS-Klassen aus eigenem NPM-Modul:
Jo, das hab ich jetzt alles hinbekommen.
Was hast Du noch geändert im Vergleich zu zuvor?
@uwe72
Habs auf Github aktualisiert, aber die Verwendung von iobroker eigenen Befehlen endet in undefined oder error. Dafür müsste ich mich wohl durch den Javascript-Adapter arbeiten um zu verstehen wie das genau verarbeitet wird... Em nö :)EDIT: Ach und eine Änderung am Importfile verlangt nach einem Restart der Javascriptinstanze.
-
@uwe72
Habs auf Github aktualisiert, aber die Verwendung von iobroker eigenen Befehlen endet in undefined oder error. Dafür müsste ich mich wohl durch den Javascript-Adapter arbeiten um zu verstehen wie das genau verarbeitet wird... Em nö :)EDIT: Ach und eine Änderung am Importfile verlangt nach einem Restart der Javascriptinstanze.
-
@uwe72
Habs auf Github aktualisiert, aber die Verwendung von iobroker eigenen Befehlen endet in undefined oder error. Dafür müsste ich mich wohl durch den Javascript-Adapter arbeiten um zu verstehen wie das genau verarbeitet wird... Em nö :)EDIT: Ach und eine Änderung am Importfile verlangt nach einem Restart der Javascriptinstanze.
@ticaki Ja, ist bei mir auch so. sendTo() beispielsweise wird dann im iobroker Script nicht erkannt.
lib.ts:
class Person { private nachname: string; private vorname: string; private alter: string; constructor(vorname, nachname, alter) { this.vorname = vorname; this.nachname = nachname; this.alter = alter; } information(): string { sendTo("email.0", { from: "uwe.clement@gmail.com", to: "uwe.clement@gmail.com", subject: "Test1", html: "test2" }); return (`Mein Name ist ${this.vorname} ${this.nachname} und ich bin ${this.alter} Jahre alt!!!!1`); } log(): void { log(this.information()); } } module.exports = { Person};ioBroker:
const { Person } = require('/opt/iobroker/my_scripts/lib.js'); const myPerson = new Person(); log(myPerson.information());Fehlermeldung:
javascript.1 2023-11-12 12:45:31.652 error at Script.runInContext (node:vm:135:12) javascript.1 2023-11-12 12:45:31.652 error at script.js.common.TEST_IMPORT_TS:8:14 javascript.1 2023-11-12 12:45:31.652 error at Person.information (/opt/iobroker/my_scripts/lib.js:8:9) javascript.1 2023-11-12 12:45:31.652 error ReferenceError: sendTo is not defined javascript.1 2023-11-12 12:45:31.652 error ^ javascript.1 2023-11-12 12:45:31.652 error sendTo("email.0", { javascript.1 2023-11-12 12:45:31.652 error script.js.common.TEST_IMPORT_TS: /opt/iobroker/my_scripts/lib.js:8 -
@ticaki Ja, ist bei mir auch so. sendTo() beispielsweise wird dann im iobroker Script nicht erkannt.
lib.ts:
class Person { private nachname: string; private vorname: string; private alter: string; constructor(vorname, nachname, alter) { this.vorname = vorname; this.nachname = nachname; this.alter = alter; } information(): string { sendTo("email.0", { from: "uwe.clement@gmail.com", to: "uwe.clement@gmail.com", subject: "Test1", html: "test2" }); return (`Mein Name ist ${this.vorname} ${this.nachname} und ich bin ${this.alter} Jahre alt!!!!1`); } log(): void { log(this.information()); } } module.exports = { Person};ioBroker:
const { Person } = require('/opt/iobroker/my_scripts/lib.js'); const myPerson = new Person(); log(myPerson.information());Fehlermeldung:
javascript.1 2023-11-12 12:45:31.652 error at Script.runInContext (node:vm:135:12) javascript.1 2023-11-12 12:45:31.652 error at script.js.common.TEST_IMPORT_TS:8:14 javascript.1 2023-11-12 12:45:31.652 error at Person.information (/opt/iobroker/my_scripts/lib.js:8:9) javascript.1 2023-11-12 12:45:31.652 error ReferenceError: sendTo is not defined javascript.1 2023-11-12 12:45:31.652 error ^ javascript.1 2023-11-12 12:45:31.652 error sendTo("email.0", { javascript.1 2023-11-12 12:45:31.652 error script.js.common.TEST_IMPORT_TS: /opt/iobroker/my_scripts/lib.js:8@fastfoot Wollte Dich fragen, ob Du eine Idee hast wie man es schafft im externen Script "Dinge" wie sendTo() zu verwenden? Extern lässt es sich fehlerfrei in ein *.js umwandeln. In Iobroker wird der Inhalt des Scriptes angemeckert, da sendTo() unbekannt.
-
@fastfoot Wollte Dich fragen, ob Du eine Idee hast wie man es schafft im externen Script "Dinge" wie sendTo() zu verwenden? Extern lässt es sich fehlerfrei in ein *.js umwandeln. In Iobroker wird der Inhalt des Scriptes angemeckert, da sendTo() unbekannt.
Unter https://forum.iobroker.net/topic/69840/erledigt-typescript-viele-common-global-scripte-cpu/34?_=1699802021717
gibt's ganz unten auch noch Informationen zum Thema. Sorry, dass dies nun parallelisiert ist. -
@fastfoot Wollte Dich fragen, ob Du eine Idee hast wie man es schafft im externen Script "Dinge" wie sendTo() zu verwenden? Extern lässt es sich fehlerfrei in ein *.js umwandeln. In Iobroker wird der Inhalt des Scriptes angemeckert, da sendTo() unbekannt.