I am trying to build an API which will take in image so used multer for that purpose, I am getting a success for uploading an image but it saves in some weird format not the
This issue has been solved, for those who has similar kind off issue. What worked for me was doing
app.use(multer({dest:'./angular-src/src/assets/'}).single('file'));
in the API class itself.