DEV Community

Discussion on: How do you store the pictures that users have uploaded in your website?

Collapse
 
dmfay profile image
Dian Fay

Storing images inline in the database can raise hackles, but honestly if you know you aren't going to be dealing with a huge image collection it can't be beat for convenience.

Recently I used Amazon S3 to store images and the getSignedUrl API to generate <img> elements for an internal application.