You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
= Using {productname} from the Tiny Cloud CDN with the Angular framework
1
+
= Using {productname} from Tiny Cloud in Angular
2
2
:navtitle: Angular
3
-
:description: A guide on integrating TinyMCE from the Tiny Cloud into the Angular framework.
3
+
:description: A guide on using TinyMCE from the Tiny Cloud in a Angular project.
4
4
:keywords: integration, integrate, angular
5
5
:productSource: cloud
6
6
7
+
This guide shows how to integrate {productname} from Tiny Cloud into an Angular application using https://github.com/tinymce/tinymce-angular[{productname} Angular component].
The https://github.com/tinymce/tinymce-angular[Official {productname} Angular component] integrates {productname} into Angular projects. This procedure creates a https://angular.dev/tools/cli/setup-local[basic Angular application] containing a bundled {productname} editor.
8
+
This guide shows how to integrate the NPM version of {productname} in an Angular application using a module bundler Vite.
9
9
10
10
For examples of the {productname} Angular integration, visit https://tinymce.github.io/tinymce-angular/[the tinymce-angular storybook].
11
11
@@ -15,7 +15,7 @@ This procedure requires https://nodejs.org/[Node.js (and NPM)].
15
15
16
16
== Procedure
17
17
18
-
. On a command line or command prompt, install the link:https://angular.dev/tools/cli[Angular CLI Tool] package.
18
+
. From a terminal or command prompt, install the link:https://angular.dev/tools/cli[Angular CLI Tool] globally.
19
19
+
20
20
[source,sh]
21
21
----
@@ -27,27 +27,14 @@ npm install -g @angular/cli
27
27
----
28
28
ng new --defaults --skip-git tinymce-angular-demo
29
29
----
30
-
. Change into the newly created directory.
30
+
. Go to the newly project directory and install `+tinymce+` and `+@tinymce/tinymce-angular+`.
31
31
+
32
32
[source,sh]
33
33
----
34
-
cd tinymce-angular-demo
34
+
cd tinymce-angular-demo && npm install tinymce @tinymce/tinymce-angular
35
35
----
36
-
. Install the `+tinymce+` and `+@tinymce/tinymce-angular+` packages.
0 commit comments