I have been building a MEAN stack review application. I implemented Multer for the profile image uploading. I am successfully uploading images and saving them to MongoDB, however to see the image appear I need to restart the application.
I would like to be able to display the image on the page as soon as the image is successfully uploaded through Multer without restarting anything.
I am curious whether there is a simple method to implement this. Do I need a get request and possibly a page refresh?
Thanks for your help.