I use Node.js on Heroku and use MongoHQ for data.
My application should be able to store image files that are downloaded from the user or dumped from other sites. I'm not looking for add-ons for image processing or the like, I just have to be able to store and maintain them. This is normal if I just refer to them from my Node application as a numeric identifier or the like.
Being a self-financed one-person project, I would like to do it as cheaply as possible (I don’t want to pay a lot of fees for add-ons) and prefer to store everything on Heroku for simplicity (although the latter is not a requirement, just a preference) . I know that I can store them in Mongo as binary, but I am looking for something more efficient and, hopefully, cheaper on a mega-storage.
source
share