cara mengakses server node js dari komputer lain

/* 
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