I found many refer url for Meteor framework where i found mongodb as database, since i don\'t have much knowledge in mongodb. So is there any way to implement mysql instead
There is maybe a way to do that but it's tricky :
Install a Mysql driver from npm Then You can choose to use MongoDb as a first front-end or Meteor Streams from Arunoda. Then You just have to use the deny/allow system from Meteor.Collections to bind insert/update/remove from client side to Mysql You should also use the publish system to query Mysql database and return data to the client.
The last problem is about server database observing : if something change in Mysql, it won't alert all other client, except maybe with Meteor.Streams. That could be rather fun to implement.