Cannot install roku nodejs

Hello. I cannot install roku nodejs.

Blockquote
pi@raspberrypi:~/Desktop/LG_TV $ npm i rokujs
npm warn EBADENGINE Unsupported engine {
npm warn EBADENGINE package: 'scrap-favicon@1.0.4',
npm warn EBADENGINE required: { node: '>=10.18.0 <11 || >=12.14.0 <13' },
npm warn EBADENGINE current: { node: 'v18.20.7', npm: '10.8.2' }
npm warn EBADENGINE }
npm warn EBADENGINE Unsupported engine {
npm warn EBADENGINE package: 'superagent@7.0.1',
npm warn EBADENGINE required: { node: '>=6.4.0 !13' },
npm warn EBADENGINE current: { node: 'v18.20.7', npm: '10.8.2' }
npm warn EBADENGINE }
npm error code ENOTEMPTY
npm error syscall rename
npm error path /home/pi/Desktop/LG_TV/node_modules/object-inspect
npm error dest /home/pi/Desktop/LG_TV/node_modules/.object-inspect-a65m8v0R
npm error errno -39
npm error ENOTEMPTY: directory not empty, rename '/home/pi/Desktop/LG_TV/node_modules/object-inspect' -> '/home/pi/Desktop/LG_TV/node_modules/.object-inspect-a65m8v0R'
npm error A complete log of this run can be found in: /home/pi/.npm/_logs/2025-03-14T20_40_03_488Z-debug-0.log

Blockquote

can you help me?
thanks.
Marc.

This is not caused by the rokujs node.

Somewhere in the install scope there is the scrap-favicon node, this node is being installed (because npm validates all existing nodes when installing new nodes) and it has hard restrictions on what versions of NodeJS it will run on required: { node: '>=10.18.0 <11 || >=12.14.0 <13' }

This expands to

  • will run on between 10.18.0 and 11
  • or between 12.14.0 and 13

You need to work out what is using that node and why it's installed, it doesn't look to be a dependency of the rokujs node, so I suggest you try running

npm ls scrap-favicon

This should show which package it is a dependency of.

It doesn't look to have been updated in about 4-5 years

scrap-favicon@1.0.4

I don't think the EBADENGINE warnings are the reason the install is failing. I think the reason your install fails is actually this

I think that is saying that the folder '/home/pi/Desktop/LG_TV/node_modules/.object-inspect-a65m8v0R` already exists. That is a left over folder from some previous operation. Delete all such folders, with the random characters on the end that you see in the node_modules folder.