AngularJS
Link
- JavaScript SPA framework
- This note is about both “AngularJS” (version 1) and the backwards-incompatible “Angular” framework (all major later versions).
Excerpt
Why AngularJS?
HTML is great for declaring static documents, but it falters when we try to use it for declaring dynamic views in web-applications. AngularJS lets you extend HTML vocabulary for your application. The resulting environment is extraordinarily expressive, readable, and quick to develop.
Alternatives
Other frameworks deal with HTML’s shortcomings by either abstracting away HTML, CSS, and/or JavaScript or by providing an imperative way for manipulating the DOM. Neither of these address the root problem that HTML was not designed for dynamic views.
Extensibility
AngularJS is a toolset for building the framework most suited to your application development. It is fully extensible and works well with other libraries. Every feature can be modified or replaced to suit your unique development workflow and feature needs. Read on to find out how.
Notes
- AngularJS is now in Long Term Support (LTS) mode: Find out more. Explore End Of Life (EOL) options here.
Resources
- Full Page AngularJS Slideshow
- thenikso/angular-flexslider - AngularJS directive to use Woothemes’ FlexSlider jQuery plugin
- Responsive slideshow with controls in AngularJS
Testing
- Protractor
Protractor is an end-to-end test framework for Angular and AngularJS applications.
Protractor runs tests against your application running in a real browser, interacting with it as a user would.