How to insert image in databese?

how insert image in databese ?

Mongo supports any EJSON types for insert. Simply you could convert image into base64 string an save to DB (as string). Also you can search forums to find a lot of techics and ready to use packages for storing images (or files) with Metor/Mongo.

You can check out http://mongodb-image.meteor.com with the source on github. There are certain limitations when storing images in mongodb, though. You can find them on the mongodb website.

Thank’s my friend try on my first project in meteor js…