Como acessar o Node JS Server de outro computador
/*
Change the host so you're not listening on localhost(127.0.0.1)
*/
const port = 3000;
const host = '0.0.0.0';
app.listen(port, host, () => {
console.log('Listening on port ' + port);
});
xSynergyx