Reputation: 133
I was trying out the Cloud9 IDE from AWS by creating a "Hello World" application in Node JS. I used the guide from the following link but when I went to "Preview" my application the browser showed a page that said the "VFS connection does not exist". I am pretty new to server management and I don't know what VFS stands for, so I don't know where to start looking for a solution. All of my searches led to forums of people talking about ruby on rails, and the error was specific to that framework. Anyone experiencing the same problem, and are there any solutions?
let express = require("express");
let app = express();
app.get("/", (req,res) => {
console.log("Hello");
});
app.listen(8080,"127.0.0.1",() => {
console.log("Server Running ...");
});
P.S. I know I am not sending a page back in this code, I just want the console to output the "Hello" statement so that I know that the server is receiving the requests.
Upvotes: 0
Views: 1863
Reputation: 1
Try using Internet Explorer. I also faced this issue in Google Chrome. I don't know why this happens, but Internet Explorer is the solution.
Upvotes: 0