How to get my system local ip using react js
Solution 1:
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);