I typed this into terminal
$ curl -X POST http://localhost:3000/voice
and I got this error
curl: (7) Failed to connect to localhost port 3000: Connection refused
I've looked everywhere for a solution I can understand, but found no luck. Any help is appreciated.
localhost
is not inhosts file
... try127.0.0.1
instead oflocalhost
– Cookelsof -iTCP -P -n
. There may be quite a few things with open connections, so piping it throughgrep 3000
may help. If nothing shows up, make sure your server's running. – Monettanpm start
. – Babbage