mirror of https://github.com/node-red/node-red.git
fixes #5251 The code changed from 4.0.x to 4.1.x This change to to prevent making changes to the orginial input `msg` object incase any values were stored in context (pass by refernce). The change meant that for every output message the whole original input `msg` was being cloned, which could be huge, causing a big performance regresion. This fix ensures the clone of the orginial `msg` is only done once and the much smaller output message is then cloned again to update `msg.parts` object for each output. This results in lots of small clones rather than lots of very large clones. |
||
|---|---|---|
| .. | ||
| core | ||
| examples | ||
| icons | ||
| locales | ||
| .npmignore | ||
| 99-sample.html.demo | ||
| 99-sample.js.demo | ||
| LICENSE | ||
| README.md | ||
| index.js | ||
| package.json | ||
README.md
@node-red/nodes
Node-RED core nodes module.
This provides all of the core Node-RED nodes.
Source
The main Node-RED modules are maintained as a monorepo on GitHub.