AngularJS Tutorial: Learn to Build Modern Web Apps
21–30 of 93 posts
Re: AngularJS Tutorial: Learn to Build Modern Web Apps
#22Also, we have a pdf version of the ebook available for $25 on the site, but we'd like to give all of you on HN a 20% discount. You can go to this URL to get the cheaper price - http://gum.co/SUry/awesomehners
Thanks for all of your support!
Re: AngularJS Tutorial: Learn to Build Modern Web Apps
#23Is angular the reason this site scrolls and renders content all weird?
Re: AngularJS Tutorial: Learn to Build Modern Web Apps
#24Re: AngularJS Tutorial: Learn to Build Modern Web Apps
#25Re: AngularJS Tutorial: Learn to Build Modern Web Apps
#26Curious if others do something similar and group code together by modules or does everyone group by type?
Re: AngularJS Tutorial: Learn to Build Modern Web Apps
#27Re: AngularJS Tutorial: Learn to Build Modern Web Apps
#28Earlier quoted context omitted.
Looks like you can get the source code and the eBook as a .pdf for that amount.
I think of an ebook as something I can read without internet access. Is there something like that available for free on this website? Edit: Print to PDF works, should have realized it was a single page app ;-). Thanks!
Re: AngularJS Tutorial: Learn to Build Modern Web Apps
#29One advantage of the MEAN stack is that you only need to know javascript to start developing on it, which saves time and brainpower to get started. That being said, I'm curious if there are other advantages to learn the MEAN stack?
The advantage is you can do real time async stuff a lot better then with other frameworks.
Re: AngularJS Tutorial: Learn to Build Modern Web Apps
#30Working with a large Angular app, I've found it much nicer to split away from the "Rails"-style convention of grouping by type (controllers, models, etc) and instead grouping by modules. This plays especially well with Angular where you can group everything within a module together and include a single module which ties all the dependencies together. Curious if others do something similar and group code together by m…