This is what it supposed to do on Node.Js
I am stuck at 6:16 where it said "node server.js" where it supposed to open up 127.0.0.1:3000, but all I get is this error.
on my browser it says "ERR_CONNECTION_REFUSED"
There is nothing wrong with XAMMP and I don't really need port 80 to be open its for beta testing.
What the error in your console says is that the
static()
method is undefined and does not exist inside of the importedconnect
namespace i.e. theconnect package
.The api for Node's HTTP package
It seems that the
static()
method you use is a method for theExpressJS
framework.The api for the ExpressJS framework
So when you install
ExpressJS
and create the connection using that framework the method won't be undefined and everything will work as supposed.