score:0

assuming that you are using express at your backend just serve the files as static from public or whatever folder you want.

app.use('/static', express.static('public'))

then get your files by calling urls like

http://localhost:3000/{your_image_name}.jpg


Related Query

More Query from same tag