Getting started

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

Bemtv App Javascript:

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:

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.

NPM


npm i bemtv
<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.

Last updated