Solución:
getaddrinfo ENOTFOUND significa que el cliente no pudo conectarse a la dirección dada. Intente especificar el host sin http:
var optionsget = {
host : 'localhost',
port : 3010,
path : '/quote/random', // the rest of the url with parameters if needed
method : 'GET' // do GET
};
Con respecto a los recursos de aprendizaje, no te equivocarás si comienzas con http://www.nodebeginner.org/ y luego revisas un buen libro para obtener un conocimiento más profundo; te recomiendo Professional Node.js, pero hay muchos por ahí.
Verifique el archivo de host que le gusta este
##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting. Do not change this entry.
##
127.0.0.1 localhost
255.255.255.255 broadcasthost
para mí fue porque en el archivo / etc / hosts no se agrega el nombre de host
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)