iobroker.javascript
Version:
Rules Engine for ioBroker
99 lines (72 loc) • 4.68 kB
Markdown

# Javascript Script Engine


[](https://www.npmjs.com/package/iobroker.javascript)

[](https://weblate.iobroker.net/engage/adapters/?utm_source=widget)
[](https://www.npmjs.com/package/iobroker.javascript)
**This adapter uses Sentry libraries to automatically report exceptions and code errors to the developers.** For more details and for information how to disable the error reporting see [Sentry-Plugin Documentation](https://github.com/ioBroker/plugin-sentry#plugin-sentry)! Sentry reporting is used starting with js-controller 3.0.
Executes Javascript, Typescript Scripts.
## Documentation
* [Function documentation](docs/en/javascript.md)
* [Benutzung](docs/de/usage.md)
* Blockly
* Here you can find the description of [blockly](docs/en/blockly.md).
* Hier kann man die Beschreibung von [Blockly](docs/de/blockly.md) finden.
* Описание по [blockly](docs/ru/blockly.md) можно найти [здесь](docs/ru/blockly.md).
## Forbidden directories for Script Filesystem Mirroring
The Script Filesystem Mirroring will store all Source Files of the Scripts in your Filesystem to allow you to edit the Files in your favourite Script editor beside the Web-Editor. All changes are synced in both directions.
When enabling the Script Filesystem mirroring, please make sure to create a **dedicated new directory** and **do not** use an existing directory with other content. Please also make sure that no other script or process changes files in the provided directory to prevent access issues.
Any location needs to be writable by the "iobroker" user!
Since v5.5.0 of the JavaScript adapter the following locations (relative to the ioBroker Base directory, usually `/opt/iobroker`) are not allowed to be used:
* The ioBroker base directory itself and any path above!
* `./iobroker-data` itself, custom subdirectory (choose a name that do not overlap with any adapter!)
* `./iobroker-data/backup-objects` or the anything below
* `./iobroker-data/files` or the anything below
* `./iobroker-data/backitup` or the anything below
* `./backups` or the anything below
* `./node_modules` or the anything below
* `./log` or the anything below
## Todo
- Goto current line in debugger
- ...
## Changelog
<!--
### **WORK IN PROGRESS**
-->
### 7.6.3 (2024-01-11)
* (klein0r) Fixed bug in formatTimeDiff Blockly
### 7.6.2 (2024-01-02)
* (klein0r) Added missing console.info()
* (klein0r) Added missing type hints
* (klein0r) Creation of astro states is now optional
* (klein0r) Fixed logging of objects/sets
### 7.6.0 (2023-12-26)
* (klein0r) Added schedules by state value (scheduleById)
### 7.5.1 (2023-12-18)
* (klein0r) Added option for calendar week to Blockly
* (klein0r) Fixed inpaired round brackets of getMinutes (Blockly)
### 7.5.0 (2023-12-15)
* (klein0r) Blockly: Day of week as number always returns 1 (monday) to 7 (sunday)
* (klein0r) Fixed layout of script type selection
* (klein0r) Fixed sendto with multiple instances (for callback / timeout handling)
## License
The MIT License (MIT)
Copyright (c) 2014-2024 bluefox <dogafox@gmail.com>,
Copyright (c) 2014 hobbyquaker
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.