When I run it, I get the following
When I click on localhost:8080, it's not recognized.
JavaScriptGitAngular
Last Comment
Isaac
8/22/2022 - Mon
Sajeetharan Sinnathurai
It seems working fine in your local. Open the browser and type http://localhost:8080
not responding
I think the problem might have to do with a path. In that dir structure screenshot, your app.js file is in the src folder, but the public folder is up one level from there. The app.use statement can't see it when it not responding the visit the site give the suggestion.
Leonidas Dosas
If you see the notes at github it says that this plugin requires angular varsion 4.3 or higher.First check the path and then the angular version
Is the browser running on the same sever as the one you ran ng serve on?
The report from the build process is good - so there should be a node instance listening on 8080 that you can connect to - but you will only be able to connect locally - you cannot connect from your host computer.
Here's what I get for path and angular version. It says undefined.
Julian Hansen
ng serve is reporting it is running on 8080 (usually defaults to 4200)
you can try
ng serve --port 4200 and then try to connect on localhost:4200
I need to check though - where is your browser running - is this on your local machine or on C9.io.
It can only work if the browser is running on the same physical machine as the one you ran ng serve on - it is no use opening a local browser and trying to connect - it won't work.
Do you mean the browser?
And your angular project is running on C9.io?
If that is the case it is never going to work. localhost refers to your local machine so the ng serve needs to be running locally as well - is this the case? I don't suspect so or you would probably not be having this problem.
Isaac
ASKER
Yes, it's the browser. It makes sense what you are saying. But it has to run in angular and I think it can....check this out I think there is some configuration settings I need to do.