29 lines
560 B
Markdown
29 lines
560 B
Markdown
## Download
|
|
|
|
Frappe DataTable can be consumed in several different forms.
|
|
|
|
### CDN
|
|
|
|
Load it directly from the unpkg CDN.
|
|
|
|
```html
|
|
<script src="https://unpkg.com/frappe-datatable@0.0.5/dist/frappe-datatable.min.js"></script>
|
|
```
|
|
|
|
### Package managers
|
|
|
|
Include it directly in your build workflow. You can find the compiled JS/CSS files in the `dist/` directory.
|
|
|
|
```bash
|
|
yarn add frappe-datatable
|
|
# or
|
|
npm install frappe-datatable
|
|
```
|
|
|
|
### Source
|
|
|
|
The complete source code is always available on Github.
|
|
|
|
```bash
|
|
git clone https://github.com/frappe/datatable
|
|
``` |