node app not visible in browser aws ec2

Solutions on MaxInterview for node app not visible in browser aws ec2 by the best coders in the world

showing results for - "node app not visible in browser aws ec2"
Soline
05 May 2020
1    var express = require('express');
2var app = express();
3
4app.listen(3000, ()=>  {
5    console.log('listening');
6});
7
8app.get('/',(req,res)=>  {
9    res.send('hi');
10});
11
similar questions
queries leading to this page
node app not visible in browser aws ec2