mirror of
https://github.com/tabler/tabler.git
synced 2025-12-26 11:16:12 +04:00
Update docs structure
This commit is contained in:
46
docs/ui/getting-started/download.mdx
Normal file
46
docs/ui/getting-started/download.mdx
Normal file
@@ -0,0 +1,46 @@
|
||||
---
|
||||
title: Download
|
||||
description: Download Tabler to get the compiled CSS and JavaScript, source code, or include it with your favorite package managers like npm, yarn and more.
|
||||
---
|
||||
|
||||
## CDN via jsDelivr
|
||||
|
||||
All files included in `@tabler/core` npm package are available over a jsDelivr CDN. Use it to deliver cached version of Tabler’s compiled CSS and JS to your project.
|
||||
|
||||
```html
|
||||
<script src="$TABLER_CDN/dist/js/tabler.min.js"></script>
|
||||
<link rel="stylesheet" href="$TABLER_CDN/dist/css/tabler.min.css">
|
||||
```
|
||||
|
||||
You can also include additional Tabler plugins:
|
||||
|
||||
```html
|
||||
<link rel="stylesheet" href="$TABLER_CDN/dist/css/tabler-flags.min.css">
|
||||
<link rel="stylesheet" href="$TABLER_CDN/dist/css/tabler-payments.min.css">
|
||||
<link rel="stylesheet" href="$TABLER_CDN/dist/css/tabler-vendors.min.css">
|
||||
```
|
||||
|
||||
## Package managers
|
||||
|
||||
Install Tabler in your Node.js powered apps with the npm package:
|
||||
|
||||
<TabsPackage name="@tabler/core" />
|
||||
|
||||
OR install for Webfonts
|
||||
|
||||
<TabsPackage name="@tabler/icons-webfont" />
|
||||
|
||||
Tabler uses other packages to enhance the functionality for example charts and input masks. These are not automatically installed to avoid huge
|
||||
dependency trees and need to be installed by using npm install. We support the following packages as of writing.
|
||||
|
||||
- [apexcharts](https://apexcharts.com/)
|
||||
- [autosize](http://www.jacklmoore.com/autosize/)
|
||||
- [choices.js](https://github.com/Choices-js/Choices)
|
||||
- [countup.js](https://inorganik.github.io/countUp.js/)
|
||||
- [flatpickr](https://flatpickr.js.org/)
|
||||
- [imask](https://imask.js.org/)
|
||||
- [litepicker](https://litepicker.com/)
|
||||
- [nouislider](https://refreshless.com/nouislider/)
|
||||
- [tom-select](https://tom-select.js.org/)
|
||||
|
||||
For the complete list of supported packages you can check the peerDependencies section in our [package.json](https://github.com/tabler/tabler/blob/dev/package.json)
|
||||
Reference in New Issue
Block a user