> Documentation index: [Saleor](/llms.txt) · [This section](/developer/llms.txt)
> Source: https://docs.saleor.io/developer/extending/apps/quickstart

# Apps Development Quickstart

Saleor apps can be written in any programming language as long as it's a Web application conforming to the [app requirements](/developer/extending/apps/architecture/app-requirements.md).

The existing app ecosystem in JavaScript can help you get up and running quickly.

<a id="javascript"></a>

## JavaScript

The simplest way to create a Saleor app is to clone the [Saleor App Template](/developer/extending/apps/developing-apps/app-template.md) repository:

```bash
git clone https://github.com/saleor/saleor-app-template.git my-saleor-app
```

Then install dependencies and start the app:

```bash
cd my-saleor-app
pnpm install
pnpm dev
```

That's it! Your app should be up and running.

<a id="other-languages"></a>

## Other languages

<a id="python"></a>

### Python

While Saleor doesn't provide an official template for Python apps, we can recommend using [`mirumee/saleor-app-framework-python`](https://github.com/mirumee/saleor-app-framework-python). It was created by our partner [Mirumee Software](https://github.com/mirumee), with some contributions from core Saleor members.
