Been trying for a few hours to get this issue fixed but cant make a post request with this error. At first i was using ng serve but then started using npm start but still got errors.
Error:
[HPM] Error occurred while trying to proxy request /api/books from localhost:4200 to http://localhost:3333 (ECONNREFUSED) (https://nodejs.org/api/errors.html#errors_common_system_errors)
My proxy file:
{
"/api/*": {
"target": "https://localhost:4200",
"secure": false,
"changeOrigin": true,
"logLevel": "debug"
}
}