New
-
Add drop-down to adv settings that lets the served folder be changed between src and dist. #147
- If the
<uibRoot>/<servedFolder>
folder does not exist, it will be silently created. - If the
<uibRoot>/<servedFolder>/index.html
file does not exist, a warning will be issued to the Node-RED log & the Node-RED debug panel.
- If the
-
Allow front-end code to update the
msg
. #146This allows your front-end code to be its own test harness by pretending that a msg has been
sent
from Node-RED. It would also let you have a single processing method even if you wanted to use a non-Node-RED data input (e.g. a direct MQTT connection or some other API).uibuilder.set( 'msg', { topic:'my/topic', payload: {a:1, b:'hello'} } )
When using this feature, the
uibuilder.onChange('msg', function(msg) { ... })
function is still triggered as expected.
Fixed
- #148 Editor node config cannot escape https check when not running in development mode