Files
mediabunny/docs/guide/introduction.md
T

620 B

Introduction

Install Mediakit using your favorite package manager:

::: code-group

npm install mediakit
yarn add mediakit
pnpm add mediakit
bun add mediakit

:::

Both ESM and CommonJS are supported:

import * as Mediakit from 'mediakit';
const Mediakit = require('mediakit');

Alternativly, you can simply include the library using a script tag in your HTML:

<script src="path/to/mediakit.js"></script>

You can download the built distribution file from the releases page.