Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Different DB and front end for Meteor

Tags:

meteor

Lets say I want to use a different DB than Mongo in Meteor's back-end and also want to use a visualization lib like D3.js on the front-end. Is that possible at the moment? How complex would it be to add it by myself if not? Thanks

like image 917
user971956 Avatar asked Apr 11 '12 17:04

user971956


1 Answers

https://github.com/meteor/meteor/tree/master/packages/mongo-livedata the documentation indicates that this would be the module to start with if you wanted to replace the database functionality.

You can substitute another database for MongoDB by providing a server-side database driver and/or a client-side cache that implements an alternative API. The mongo-livedata is a good starting point for such a project.

-- http://docs.meteor.com/#data

like image 55
Gabriel Avatar answered Sep 30 '22 18:09

Gabriel