データバリデーションはもちろん、クライアントサイドでデータとUIの自動バインド、JavaScriptのMVCプログラミング手法などの機能を提供しています。
angular is a new, powerful, client-side technology that makes it much easier for you to create dynamic web sites and complex web apps, all without leaving the comfort of your HTML / JavaScript home
<input type="text" name="name" value="World"/>
Hello {{name}}!
<input type="text" name="user.address.city" size="12" ng:required/>
<!doctype html>
<html xmlns:ng="http://angularjs.org">
<!-- scriptタグでangularの動作環境を定義します -->
<script src="../angular-0.9.19.min.js" ng:autobind></script>
<body>
Your name: <input type="text" name="name" value="World"/>
<hr/>
<!-- inputウィジェットとデータバインド -->
Hello {{name}}!
</body>
</html>