I have been previously learning, how to make applications with ionic2, Angular2 --> For Frontend. And backend--> Firebase. Now I have to change my backend to MongoDB.So, What all important things I should learn in order to use MongoDB?Please suggest.
Thank you.
Note: Please let me know if any more inputs are needed relating to this.
You can learn following to accomplish a decent backend with mongodb :
Node js(optional if required) : 1. Learn express which is really easy. It will help you to get started with basic routing, cors handling , middlewares and such http-web related stuff. 2. Mongoose, which is a mongodb package for node. There are many others, however if you are familiar with ORM then mongoose is really handy to get you going with simple steps. 3. Authentication for RESTful APIs : There are many options available to be honest. However, based on my experience, you can use passport-jwt, which is really simple and effective.