Skip to content

Creating Document Editor Angular App

Viktor Stupak edited this page Apr 11, 2024 · 1 revision

This guide outlines the process of setting up a Document Editor Angular application using Angular CLI and integrating GroupDocs.Editor UI for supported document formats.

Prerequisites

Ensure you have Node.js and npm installed on your system.

Install Angular CLI

The Angular CLI is a command-line interface tool that helps in initializing, developing, scaffolding, and maintaining Angular applications.

To install the Angular CLI, run the following command:

npm install -g @angular/cli@14.2.13

required Angular CLI version 14.2.13 see Angular CLI npm package

Create the Angular App

Once Angular CLI is installed, you can create a new Angular application. Use the following command:

ng new groupdocs-editor-ui-wordprocessing-pdf-app

Alternatively, if you prefer using the latest Angular CLI version:

npx -p @angular/cli@14.2.13 ng new editor-ui-email-app

Configure Document Editor for Supported Formats

GroupDocs.Editor UI provides various Angular components for editing different document formats. Depending on your requirements, you can configure the editor for supported formats:

Refer to the respective links for detailed configuration instructions.

Explore Available Samples

To further understand and explore the capabilities of Angular Document Editors, you can refer to the available samples provided by GroupDocs.Editor UI:

Clone this wiki locally