> For the complete documentation index, see [llms.txt](https://jorgeguerrabrazil-github.gitbook.io/angular-unit-testing-and-numerical-analysis/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jorgeguerrabrazil-github.gitbook.io/angular-unit-testing-and-numerical-analysis/getting-started/creating-our-angular-project.md).

# Creating our Angular project

On this section, we shall start our project

We have two ways to create our project: from Stackblitz or from your computer, they both use Visual Code Studio. On this tutorial, we shall use Stackblitz: I want to let it available online for you guys, as so you can play without needing all the setups; just the initial process changes, the remaining procedure is similar.&#x20;

## Creating a project on Stackblitz

Just go to Stackblitz, enter with your account, and choose Angular project.

![Steps to create your Angular project on Stackblitz](https://1362965173-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FZFJTug9QKzvn7ZHFVWpZ%2Fuploads%2FovbM3kXDPsqHS0nBhEhz%2Fcreate%20a%20project%20on%20stackblitz.jpg?alt=media\&token=28e6c652-53b5-4aa3-8055-3fed919d8e88)

![Project created](https://1362965173-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FZFJTug9QKzvn7ZHFVWpZ%2Fuploads%2FMD6a6SyFqLWFdsR7eNdv%2Fproject%20created%20.jpg?alt=media\&token=8a40a76e-fc46-40b2-a227-ccc5786ec39c)

## Creating a project on desktop with Visual Code Studio

Open your VS code, and type:

```
ng new project name
```

wait, and may take a while, and shit to the folder, "cd your project"

```
npm start
```

Wait for it, wait for it, and have fun! 😎   iT

{% hint style="info" %}
In order to alleviate work to me, I am not going to keep pointing the differences, they are quite small.
{% endhint %}

The app your create is basic, but fully functional, inclusing basic tests.

{% hint style="info" %}
Run `npm test` and the test should run, everything should pass! `💪🙏`
{% endhint %}

![Doctor Cox, from Scrubs, love this character! ](https://1362965173-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FZFJTug9QKzvn7ZHFVWpZ%2Fuploads%2FnZIBzkGzQYZTfQ0hqnpP%2Fhaving%20fun.gif?alt=media\&token=fe81546e-1632-4487-9b4f-7ab4856e5ce0)

{% hint style="info" %}
The live app is [here](https://angular-ivy-gdrt5z.stackblitz.io). The sandbox is [here](https://stackblitz.com/edit/angular-ivy-gdrt5z?file=src/app/app.component.html).
{% endhint %}
