Reputation: 627
Planning to develop a hybrid mobile app with Ionic framework.
Also, with nodejs api's trying to communicate with MySQL database.
Here, do I really need Express of nodeJs?
If yes, what are the exclusive uses of Express and can I use it alongside Ionic framework for the front end?
Thanks Manikandan J
Upvotes: 0
Views: 576
Reputation: 3173
Here, do I really need Express of nodeJs?
It's not mandatory to use Express with NodeJS. But it will make your life easier, or else you will have to write code for lot of things.
If yes, what are the exclusive uses of Express and can I use it alongside Ionic framework for the front end?
Yes you can use it with Ionic. In fact, Ionic is a face of cordova, while express will work like backbone for server side code.
EDIT 1: With Express, lot of features will be readily available, to begin with
Most of these are ready to use modules, while some of them promotes cleaner code. Doing all of these using plain-vanilla JavaScript in NodeJS will take considerable time.
(Sorry, it took a while to update on striking features of Express)
Upvotes: 1