Re: Angular and Django

2014-06-22 Thread Andrew Farrell
Doug, I'm very interested to hear that Angular is more powerful than Ember. After some indecision between Ember and Angular, I decided to start picking up Ember on the advice of a friend that it was the more powerful of the two. Therefore, if you have anything I might read to contradict that, I'd b

Re: Angular and Django

2014-06-22 Thread Phang Mulianto
Angularjs great for a front end, and it just plain html + javascript. we won't need django templating, just put the angular app in a webserver like nginx to server static files, then use django for the API part with REST service. The angular html generation should not in django templating, because

Re: Angular and Django

2014-06-22 Thread Scot Hacker
Angular is really wonderful, and I use it with several Django projects. But the two are agnostic about each other. All Angular needs from the back-end is a solid JSON API to work with and a few core back-end features like handling authentication. Modern JS frameworks like Angular, sadly, make th

Re: Angular and Django

2014-06-22 Thread Doug Snyder
Angular directives and binding are actually more powerful than Django's templating! On Sun, Jun 22, 2014 at 11:29 AM, Doug Snyder wrote: > compared to other js webapp solutions like Ember or Knockout, > Angular is more powerful but maybe a steaper learning curve. > It lets you get really under

Re: Angular and Django

2014-06-22 Thread Doug Snyder
compared to other js webapp solutions like Ember or Knockout, Angular is more powerful but maybe a steaper learning curve. It lets you get really under the hood and has a unique feature called directives where you're essentially creating html tags to use as widgets. Its state of the art and Google

Re: Angular and Django

2014-06-22 Thread Doug Snyder
be sure to check out: django-angular I'm just starting to use angular and django together. I plan on using django's integration with Content Delivery Networks to serve static files including the Angular app files ( AngularJS itself can

Re: Angular and Django

2014-06-22 Thread Glen Jungels
When I am finally able to get django to work, I plan on doing this. I think the client side processing of Angular will be a nice complement to Django on the back end. On Jun 22, 2014 5:12 AM, "zweb" wrote: > > I was looking at Angular and looks like it does many of the thing Django > Templates d