mirror of
https://github.com/tabler/tabler.git
synced 2026-08-29 21:31:28 +04:00
31 lines
1.5 KiB
Plaintext
31 lines
1.5 KiB
Plaintext
---
|
||
title: Download
|
||
summary: Download Tabler to get the compiled CSS and JavaScript, source code, or include it with your favorite package managers like npm, yarn and more.
|
||
description: Download Tabler compiled CSS and JavaScript, get the source code from GitHub, or install it with npm, yarn, or a CDN link.
|
||
---
|
||
|
||
import TabsPackage from '@components/TabsPackage.astro'
|
||
import CdnImportPackage from '@components/CdnImportPackage.astro'
|
||
import CdnImportPlugin from '@components/CdnImportPlugin.astro'
|
||
|
||
## CDN via jsDelivr
|
||
|
||
All files included in the `@tabler/core` npm package are available over a jsDelivr CDN. Use it to deliver cached versions of Tabler’s compiled CSS and JS to your project.
|
||
|
||
<CdnImportPackage />
|
||
|
||
You can also include additional Tabler plugins:
|
||
|
||
<CdnImportPlugin plugins={['flags', 'payments', 'socials', 'vendors']} />
|
||
|
||
## Package managers
|
||
|
||
Install Tabler in your Node.js powered apps with the npm package:
|
||
|
||
<TabsPackage name="@tabler/core" />
|
||
|
||
## 3rd-party libraries
|
||
|
||
Tabler uses other packages to enhance its functionality - for example, [charts](/ui/plugins/chart) and [input masks](/ui/plugins/input-mask). These are not automatically installed to avoid huge dependency trees and need to be installed by using `npm install`. The full list of recommended libraries is available on the
|
||
[3rd-party Libraries & Resources](/ui/getting-started/references) page. For the most recent list of supported packages, you can also check the [libs.json](https://github.com/tabler/tabler/blob/dev/core/libs.json) file.
|