Reputation: 1959
I have a web app that I have coded in bare javascript for now and has a firebase backend. How can I add Angular to my current project to use it for MVC?
Upvotes: 0
Views: 45
Reputation: 1439
There are many ways to do this but the general steps you must take are essentially:
Depending on your restrictions I would recommend Angular CLI for generating the boiler plate code for you.
Upvotes: 1
Reputation: 97
You can use the official library: https://github.com/angular/angularfire2
Upvotes: 2