Creating your first node
I am going to create my first node using node red docs and follow all the steps here is link:Creating your first node : Node-RED but when I am going to run the command as mention in docs ,I am getting this below error
npm install test\.node_red
npm ERR! code ENOENT
npm ERR! syscall open
npm ERR! path C:\Users\Soumen Nayak\test\.node_red/package.json
npm ERR! errno -4058
npm ERR! enoent ENOENT: no such file or directory, open 'C:\Users\Soumen Nayak\test\.node_red\package.json'
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent
Never created a node myself.
My first intuitive is that the error is because you have a space in the path, in this case in your user name.
Include your path with quotations where required.
Something like this "C:\Users\Soumen Nayak\test.node_red/package.json"