--- title: "Part 0: Overview" slug: "part-0-overview" updated: 2025-10-21T03:00:56Z published: 2025-10-21T03:00:56Z canonical: "docs.processmaker.com/part-0-overview" --- > ## Documentation Index > Fetch the complete documentation index at: https://docs.processmaker.com/llms.txt > Use this file to discover all available pages before exploring further. # Part 0: Overview For the best experience with this tutorial, review these requirements to make sure you have what you need to be successful. ### Experience This tutorial assumes that you have experience with the following: - Creating Web pages by editing the HTML directly. - Programming Web site content in JavaScript. - Reading Cascading Style Sheet (CSS) content and understanding how selectors are used. - Using command-line instructions to perform tasks on your computer. - Some familiarity with [Angular](https://docs.angular.lat/docs) (optional, nice to have). ### Equipment The tutorial can be completed by using a local installation of the Angular tools or by using [StackBlitz](https://stackblitz.com/edit/angular-x7pqdn?file=src%2Fmain.ts) in a Web browser. Local Angular development can be completed on Windows, MacOS or Linux based systems. ### Concept Preview This tutorial will create an Angular app that displays an inbox with the list of Requests assigned to the logged on user in ProcessMaker and renders the form as defined in the ProcessMaker form builder, complete with JavaScript and CSS. ![](https://cdn.document360.io/2d311614-fcb7-4424-8b4c-d4d3091eebeb/Images/Documentation/Concept Preview.avif) ## Local Development Environment Perform these steps in a command-line tool on the computer you want to use for this tutorial. ### Step 1: Identify the Version of `node.js` that Angular Requires Angular requires an active LTS or maintenance LTS version of Node. Let's confirm your version of `node.js`. For information about specific version requirements, see the `engines` property in the [package.json file](https://unpkg.com/browse/@angular/core@15.1.5/package.json). From a **Terminal** window: 1. Run the following command: `node --version`. 2. Confirm that the version number displayed meets the requirements. ### Step 2: Install the Correct Version of `node.js` for Angular If you do not have a version of `node.js` installed, please follow the [directions for installation on](https://nodejs.org/en/download/) [nodejs.org](http://nodejs.org). ### Step 3: Install the Latest Version of Angular After `node.js` and `npm` are installed, install the [Angular CLI](https://angular.io/cli) which provides tooling for effective Angular development. From a **Terminal** window run the following command: ```plaintext npm install -g @angular/cli ``` ### Step 4: Install Integrated Development Environment (IDE) Use any tool you prefer to build apps with Angular. We recommend the following: 1. [Visual Studio Code](https://code.visualstudio.com/). 2. As an optional, but recommended step, you can further improve your developer experience by installing the [Angular Language Service](https://marketplace.visualstudio.com/items?itemName=Angular.ng-template). ## Review In this part, you learned about the app that you build in this tutorial and prepared your local computer to develop Angular apps.