|
|
|
|
|
by fozzieBoston
4437 days ago
|
|
That makes sense. A couple of suggestions:
1. Isolate the backend from the frontend as much as you can. i.e, besides using the rails controllers to actually render your page, exchange all info with JSON and an API like structure. This way, you can change frontend frameworks quickly without having to rewrite any of your backend. 2. Make a decision about routes quickly - either use the angularJS routes or Rails, but I would shy away from both. Personally, I found AngularJS routes annoying, specifically when it comes to SEO optimization. 3. If working with bootstrap, use http://mgcrea.github.io/angular-strap/
I highly recommend it |
|