I need to get local IP of my computer in react js app. Can anyone please suggest a good way to do it?
Any IP address of your machine you can find by using the os module - and that's native to Node.js:
const os = require('os');
const networkInterfaces = os.networkInterfaces();
const ip = networkInterfaces['eth0'][0]['address']
console.log(networkInterfaces);