@angular-wave/angular.ts 0.0.10 → 0.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -15
- package/dist/angular-ts.esm.js +1 -1
- package/dist/angular-ts.umd.js +1 -1
- package/package.json +1 -1
- package/src/core/compile.js +0 -26
- package/src/exts/messages.md +30 -30
- package/test/ng/compile.spec.js +43 -61
- package/test/ng/directive/init.spec.js +1 -1
package/README.md
CHANGED
|
@@ -2,29 +2,22 @@ AngularTS  at Google,
|
|
4
4
|
this project preserves, modernises, and expands the original [AngularJS](https://github.com/angular/angular.js)
|
|
5
|
-
framework
|
|
5
|
+
framework. While building on the core features of the original, AngularTS is not
|
|
6
6
|
a drop-in replacement or an LTS version. It has no relation to [Angular](https://angular.io) and makes no efforts to be compatible with it.
|
|
7
7
|
AngularTS is "AngularJS: The Good Parts". It takes the three core pillars of the original – a string-interpolation engine,
|
|
8
|
-
dependency injection, two-way data-binding – and adopts them to [Modern Web](https://modern-web.dev/) principles of being as
|
|
8
|
+
dependency injection, two-way data-binding – and adopts them to [Modern Web](https://modern-web.dev/) principles of being as
|
|
9
|
+
close to Web standards as possible. The result is a buildless, progressive, and battle-tested JS framework that makes web-development great again.
|
|
9
10
|
|
|
10
|
-
AngularTS lets you write
|
|
11
|
-
use good old HTML
|
|
12
|
-
syntax to express your application’s components clearly and succinctly.
|
|
11
|
+
AngularTS lets you write server-rendered web applications for desktop and mobile, without leaving the comfort of your tech-stack.
|
|
12
|
+
It lets you use good old HTML as your template language and lets you extend HTML’s
|
|
13
|
+
syntax to express your application’s components clearly and succinctly. It automatically
|
|
13
14
|
synchronizes data from your UI (view) with your JavaScript objects (model) through 2-way data
|
|
14
|
-
binding. To help you structure your application better and make it easy to test,
|
|
15
|
+
binding. To help you structure your application better and make it easy to test, AngularTS teaches
|
|
15
16
|
the browser how to do dependency injection and inversion of control.
|
|
16
17
|
|
|
17
18
|
It also helps with server-side communication, taming async callbacks with promises and deferred objects,
|
|
18
19
|
and it makes client-side navigation and deep linking with hashbang urls or HTML5 pushState a
|
|
19
|
-
piece of cake.
|
|
20
|
-
|
|
21
|
-
--------------------
|
|
22
|
-
|
|
23
|
-
**AngularJS support has officially ended as of January 2022.
|
|
24
|
-
[See what ending support means](https://docs.angularjs.org/misc/version-support-status)
|
|
25
|
-
and [read the end of life announcement](https://goo.gle/angularjs-end-of-life).**
|
|
26
|
-
|
|
27
|
-
**Visit [angular.io](https://angular.io) for the actively supported Angular.**
|
|
20
|
+
piece of cake.
|
|
28
21
|
|
|
29
22
|
--------------------
|
|
30
23
|
|