I am trying to start developing my own node. I copied the information from Creating your first node https://nodered.org/docs/creating-nodes/first-node
I got through this part of the instructions:
In your node-red user directory, typically ~/.node-red
, run:
npm install <location of node module>
I then expected to be able to go into NR and add the lower-case node. Even after restarting NR (not clear that I had to, but I understood I should and so did so out of an abundance of caution), the node is not showing as an available option.
I looked inside my node_modules directory and I see the symbolic link that the instructions said would be created:
lrwxrwxrwx 1 node-red node-red 21 May 19 15:56 debugexample -> ../../CS/DebugExample
I am now at a loss on what I have done wrong. Any suggestions?
The solution as shown below was to follow the directions and actually add the
"node-red" : {
"nodes": {
"lower-case": "lower-case.js"
}
to the npm init generated package.json, just as the directions on the first-node web page said to do.