[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-550":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":16,"stars7d":17,"stars30d":18,"stars90d":16,"forks30d":16,"starsTrendScore":16,"compositeScore":19,"rankGlobal":10,"rankLanguage":10,"license":20,"archived":21,"fork":22,"defaultBranch":23,"hasWiki":21,"hasPages":22,"topics":24,"createdAt":10,"pushedAt":10,"updatedAt":25,"readmeContent":26,"aiSummary":27,"trendingCount":16,"starSnapshotCount":16,"syncStatus":28,"lastSyncTime":29,"discoverSource":30},550,"angular.js","angular\u002Fangular.js","angular","AngularJS - HTML enhanced for web apps!","https:\u002F\u002Fangularjs.org",null,"JavaScript",58605,27104,4,389,0,1,5,45,"MIT License",true,false,"master",[],"2026-06-12 02:00:15","AngularJS [![CircleCI](https:\u002F\u002Fcircleci.com\u002Fgh\u002Fangular\u002Fangular.js\u002Ftree\u002Fmaster.svg?style=shield)](https:\u002F\u002Fcircleci.com\u002Fgh\u002Fangular\u002Fworkflows\u002Fangular.js\u002Ftree\u002Fmaster)\n=========\n\nAngularJS lets you write client-side web applications as if you had a smarter browser.  It lets you\nuse good old HTML (or HAML, Jade\u002FPug and friends!) as your template language and lets you extend HTML’s\nsyntax to express your application’s components clearly and succinctly.  It automatically\nsynchronizes data from your UI (view) with your JavaScript objects (model) through 2-way data\nbinding. To help you structure your application better and make it easy to test, AngularJS teaches\nthe browser how to do dependency injection and inversion of control.\n\nIt also helps with server-side communication, taming async callbacks with promises and deferred objects,\nand it makes client-side navigation and deep linking with hashbang urls or HTML5 pushState a\npiece of cake. Best of all? It makes development fun!\n\n--------------------\n\n**AngularJS support has officially ended as of January 2022.\n[See what ending support means](https:\u002F\u002Fdocs.angularjs.org\u002Fmisc\u002Fversion-support-status)\nand [read the end of life announcement](https:\u002F\u002Fgoo.gle\u002Fangularjs-end-of-life).**\n\n**Visit [angular.io](https:\u002F\u002Fangular.io) for the actively supported Angular.**\n\n--------------------\n\n* Web site: https:\u002F\u002Fangularjs.org\n* Tutorial: https:\u002F\u002Fdocs.angularjs.org\u002Ftutorial\n* API Docs: https:\u002F\u002Fdocs.angularjs.org\u002Fapi\n* Developer Guide: https:\u002F\u002Fdocs.angularjs.org\u002Fguide\n* Contribution guidelines: [CONTRIBUTING.md](CONTRIBUTING.md)\n* Core Development: [DEVELOPERS.md](DEVELOPERS.md)\n* Dashboard: https:\u002F\u002Fdashboard.angularjs.org\n\n\nDocumentation\n--------------------\nGo to https:\u002F\u002Fdocs.angularjs.org\n\nContribute\n--------------------\n\nWe've set up a separate document for our\n[contribution guidelines](https:\u002F\u002Fgithub.com\u002Fangular\u002Fangular.js\u002Fblob\u002Fmaster\u002FCONTRIBUTING.md).\n\nDevelop\n--------------------\n\nWe've set up a separate document for\n[developers](https:\u002F\u002Fgithub.com\u002Fangular\u002Fangular.js\u002Fblob\u002Fmaster\u002FDEVELOPERS.md).\n\n\n[![Analytics](https:\u002F\u002Fga-beacon.appspot.com\u002FUA-8594346-11\u002Fangular.js\u002FREADME.md?pixel)](https:\u002F\u002Fgithub.com\u002Figrigorik\u002Fga-beacon)\n\nWhat to use AngularJS for and when to use it\n---------\nAngularJS is the next generation framework where each component is designed to work with every other\ncomponent in an interconnected way like a well-oiled machine. AngularJS is JavaScript MVC made easy\nand done right. (Well it is not really MVC, read on, to understand what this means.)\n\n#### MVC, no, MV* done the right way!\n[MVC](https:\u002F\u002Fen.wikipedia.org\u002Fwiki\u002FModel%E2%80%93view%E2%80%93controller), short for\nModel-View-Controller, is a design pattern, i.e. how the code should be organized and how the\ndifferent parts of an application separated for proper readability and debugging. Model is the data\nand the database. View is the user interface and what the user sees. Controller is the main link\nbetween Model and View. These are the three pillars of major programming frameworks present on the\nmarket today. On the other hand AngularJS works on MV*, short for Model-View-_Whatever_. The\n_Whatever_ is AngularJS's way of telling that you may create any kind of linking between the Model\nand the View here.\n\nUnlike other frameworks in any programming language, where MVC, the three separate components, each\none has to be written and then connected by the programmer, AngularJS helps the programmer by asking\nhim\u002Fher to just create these and everything else will be taken care of by AngularJS.\n\n#### Interconnection with HTML at the root level\nAngularJS uses HTML to define the user's interface. AngularJS also enables the programmer to write\nnew HTML tags (AngularJS Directives) and increase the readability and understandability of the HTML\ncode. Directives are AngularJS’s way of bringing additional functionality to HTML. Directives\nachieve this by enabling us to invent our own HTML elements. This also helps in making the code DRY\n(Don't Repeat Yourself), which means once created, a new directive can be used anywhere within the\napplication.\n\nHTML is also used to determine the wiring of the app. Special attributes in the HTML determine where\nto load the app, which components or controllers to use for each element, etc. We specify \"what\"\ngets loaded, but not \"how\". This declarative approach greatly simplifies app development in a sort\nof WYSIWYG way. Rather than spending time on how the program flows and orchestrating the various\nmoving parts, we simply define what we want and AngularJS will take care of the dependencies.\n\n#### Data Handling made simple\nData and Data Models in AngularJS are plain JavaScript objects and one can add and change properties\ndirectly on it and loop over objects and arrays at will.\n\n#### Two-way Data Binding\nOne of AngularJS's strongest features. Two-way Data Binding means that if something changes in the\nModel, the change gets reflected in the View instantaneously, and the same happens the other way\naround. This is also referred to as Reactive Programming, i.e. suppose `a = b + c` is being\nprogrammed and after this, if the value of `b` and\u002For `c` is changed then the value of `a` will be\nautomatically updated to reflect the change. AngularJS uses its \"scopes\" as a glue between the Model\nand View and makes these updates in one available for the other.\n\n#### Less Written Code and Easily Maintainable Code\nEverything in AngularJS is created to enable the programmer to end up writing less code that is\neasily maintainable and readable by any other new person on the team. Believe it or not, one can\nwrite a complete working two-way data binded application in less than 10 lines of code. Try and see\nfor yourself!\n\n#### Testing Ready\nAngularJS has Dependency Injection, i.e. it takes care of providing all the necessary dependencies\nto its controllers and services whenever required. This helps in making the AngularJS code ready for\nunit testing by making use of mock dependencies created and injected. This makes AngularJS more\nmodular and easily testable thus in turn helping a team create more robust applications.\n","AngularJS 是一个用于构建客户端Web应用程序的JavaScript框架，它通过增强HTML的能力来简化开发过程。其核心功能包括双向数据绑定、依赖注入和模块化设计，这些特性使得开发者能够更高效地组织代码并进行测试。AngularJS支持使用HTML作为模板语言，并允许扩展HTML语法以清晰表达应用组件。该框架特别适用于需要动态更新用户界面并与服务器端进行异步通信的应用场景，如单页应用程序（SPA）。尽管官方支持已于2022年1月结束，但AngularJS仍然被广泛应用于维护现有项目或学习目的。",2,"2026-06-11 02:37:22","top_all"]