> For the complete documentation index, see [llms.txt](https://bemtv.gitbook.io/bemtvjs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://bemtv.gitbook.io/bemtvjs/getting-started.md).

# Getting started

### Quick Start(recommended)

You can get started with a simple app by running the following in your terminal:

Bemtv App Javascript:

```bash
npx degit diogoneves07/bemtv-templates/js my-app
cd my-app
npm i # or yarn or pnpm
npm run dev # or yarn or pnpm
```

Bemtv App TypeScript:

```bash
npx degit diogoneves07/bemtv-templates/ts my-app
cd my-app
npm i # or yarn or pnpm
npm run dev # or yarn or pnpm
```

This will create a minimal, client-rendered application powered by [Vite](https://vitejs.dev/).

### NPM

```bash

npm i bemtv

```

### CDN Links

```html
<script type="module">
  import { _ } from "https://www.unpkg.com/bemtv/dist/bemtv.es.js";
</script>
```

> The CDN link above will always get you the latest version of Bemtv.
