I have to run a Node.js application while reboot in Raspberry Pi.The application uses WiFi and BLE on-board of Raspberry Pi.
I have tried out the below solutions:
1.Copied my Node.js application in the rc.local
with full path.
cd path filename.js < /dev/null &
But it still didn't work.
Ref link :(How to run a script (Node.js) at startup)