# Download

> Get Tabler from the jsDelivr CDN, install it from npm, or download the compiled files and the source from GitHub.

Download Tabler compiled CSS and JavaScript, get the source code from GitHub, or install it with npm, yarn, or a CDN link.

Source: https://docs.tabler.io/ui/getting-started/download

---

## CDN via jsDelivr

All files in the `@tabler/core` npm package are on the jsDelivr CDN, so you can link the compiled CSS and JS without hosting them.

```html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tabler/core@1.5.1/dist/css/tabler.min.css" />
<script src="https://cdn.jsdelivr.net/npm/@tabler/core@1.5.1/dist/js/tabler.min.js"></script>
```

You can also include additional Tabler plugins:

```html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tabler/core@1.5.1/dist/css/tabler-flags.min.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tabler/core@1.5.1/dist/css/tabler-payments.min.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tabler/core@1.5.1/dist/css/tabler-socials.min.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tabler/core@1.5.1/dist/css/tabler-vendors.min.css" />
```

## Package managers

Install Tabler in your Node.js powered apps with the npm package:

```shell
npm install @tabler/core
yarn add @tabler/core
pnpm install @tabler/core
bun install @tabler/core
```

## 3rd-party libraries

Some features use other libraries, for example [charts](/ui/plugins/chart) and [input masks](/ui/plugins/input-mask). They aren't installed with the package, to keep the dependency tree small, so install the ones you use with `npm install`. The full list is on the [3rd-party Libraries & Resources](/ui/getting-started/references) page, and the exact shipped files are in [libs.json](https://github.com/tabler/tabler/blob/dev/core/libs.json).
