Reputation: 1081
What configurations are needed to be done while kick-starting a mid-level enterprise application for MEAN Stack. How should the configurations be done with Angular 2/4/5 and NodeJS.
Upvotes: 0
Views: 44
Reputation: 56
The nodejs part is frontend framework agnostic so it can be accessed using any front end framework via api's. eg: Angular, React, Ember
For your node setup you would probably want to use express along with a few middlewares and manage your db operations.
You can use an express generator to build the initial folder structure.
I recommend using the following packages with your node app -
Upvotes: 1