Problem with package.json commands of node

“scripts”: {
“test”: “echo “Error: no test specified” && exit 1”,
“start”: “echo -ne ‘\n’ | node index.js”
},

I also get an error failed to read keys
But in debugger mode everything is working fine.
Where echo -ne ‘\n’ not working correctly when bot started but when i start debugger then it works but then I have connection problems, please help

SOLVED: with “start”: “echo ‘’ | node index.js” with simple echo.

1 Like