Ask HN: AngularJS recommendations?
I'm building a project in AngularJS for the first time. Kind of overwhelmed by the options out there. What tools do you use in your AngularJS stacks? Anything awesome? Anything to avoid?
Thanks!
PS - Right now I'm planning on using Yeoman (http://yeoman.io/) to keep things automated and under control, and I'm working through the main tutorial (https://docs.angularjs.org/tutorial/) on the AngularJS site.
5 comments
[ 3.5 ms ] story [ 14.6 ms ] threadWe use jasmine for unit testing.
I use http://browserify.org for building. It allows me to use NPM + libraries targeted at nodejs. My goal was to avoid the reinvention with front-end package management and includes.
For UI stuff I would recommend angular-ui+bootstrap. And then the usual libs of lodash, momentjs
You can checkout of AngularJS and project organization with browserify at https://github.com/Sean-Der/fail2web/tree/master/js
As a bonus, I'm available to help if you have any random questions at all.