I followed the tutorial for setting up Node.JS. When setting up the ‘Hello World’ app I get the error message:
curl: (7) Failed to connect to localhost port 8080: Connection refused
I have even gone so far as to create a new droplet and start over. Twice.
I decided to go forward with my project anyway and see if I could figure it out as I went along, I am stuck here:
module.js:471 throw err; ^
Error: Cannot find module ‘websocket’ at Function.Module._resolveFilename (module.js:469:15) at Function.Module._load (module.js:417:25) at Module.require (module.js:497:17) at require (internal/module.js:20:19) at Object.<anonymous> (/root/poisontap/backend_server.js:4:43) at Module._compile (module.js:570:32) at Object.Module._extensions…js (module.js:579:10) at Module.load (module.js:487:32) at tryModuleLoad (module.js:446:12) at Function.Module._load (module.js:438:3)
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Accepted Answer
That is the guide I was using and following it step by step I get stuck at curl command (while on the server)
Me again. I had a network error issue. My expressjs server didnt have the proper host of
'localhost' or better yet '127.0.0.1'
at
app.listen(port, () => console.log(`Example app listening on port ${port}!`))
and so even though I could plug the domain name and the port into my browser and even curl and get some data back, internally my client side node app didnt seem to be able to read the correct web address when I said the host to
localhost:8080
Try
netstat -plnt
to see what ports are actually being listened to and try using ‘127.0.0.1’ for all hosts
and try
app.listen(port, '127.0.0.1', () => console.log(`Example app listening on port ${port}!`))
For anyone having an issue of Network Refused I had to re-enable my firewall with
ufw enable
For whatever reason I think DigitalOcean reset it. Took me two hours. How unprofessional of this company
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.