itamar
itamar

Reputation: 3967

Setting up a MongoDB connection in AngularJS project

I really don't want to have to install a full-blown MEAN project just for the one piece of data I want to store in MongoDB - is there a way for me to easily set up a MongoDB connection that I can use a service/factory with?

Upvotes: 0

Views: 60

Answers (1)

Himen
Himen

Reputation: 1450

Yes of course! Mongodb provide a suitable http rest interface.Please find this link: MongoDB Rest API Just you should run mongod by --rest parameter

Upvotes: 1

Related Questions