Hello,
Local file system storage is enabled on the ctrlx Node-RED distribution. Every 60s the Node-RED file context is saved to the Node-RED app data /context directory.
contextStorage: {
default: 'memoryOnly',
memoryOnly: {
module: 'memory'
},
file: {
module: 'localfilesystem',
cache: true,
flushInterval: 60
}
},
You can write values using the change node. Example below.
... View more