Best results I've had were with MySQL using PHP + SLIM to provide REST services on a simple backend hosting site (we used Dreamhost, which offers unlimited MySQL and unlimited PHP facilities). SLIM does pretty good JSON formatting to deliver via REST, though I had to modify some parts to get what I wanted back into AngularJS.
Its a bit old-school these days, because you can do much better development with Node.JS and MongoDB -- known as the MEAN solution: https://thinkster.io/mean-stack-tutorial ...but, these cost more in hosting at Heroku, Amazon, etc. My experience with MEAN has been to develop 10x faster and more effective than anything we tried with PHP. The debugging and coherence of having JavaScript on both client and server is far better, and MongoDB as a server is like butter on toast for all your needs. I expect Angular 2 will open up lots of good projects that you can download and then set up your own system. For now there are very good MEAN solutions to learn form. Marco > You need a webservice (implementation is up to you) which connects to the > database and gives you the desired result in JSON format. > > -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/angular. For more options, visit https://groups.google.com/d/optout.
