12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- ---
- title: Download
- ---
- Quill comes ready to use in several convenient forms.
- ### CDN
- A globally distributed and available CDN is provided, backed by [jsDelivr](https://www.jsdelivr.com/).
- ```html
- <!-- Main Quill library -->
- <script src="{{site.cdn}}/quill.js"></script>
- <script src="{{site.cdn}}/quill.min.js"></script>
- <!-- Theme included stylesheets -->
- <link href="{{site.cdn}}/quill.snow.css" rel="stylesheet">
- <link href="{{site.cdn}}/quill.bubble.css" rel="stylesheet">
- <!-- Core build with no theme, formatting, non-essential modules -->
- <link href="{{site.cdn}}/quill.core.css" rel="stylesheet">
- <script src="{{site.cdn}}/quill.core.js"></script>
- ```
- ### NPM
- Add Quill as an [NPM](//www.npmjs.org/) dependency and add it your own build workflow, or use the included built options. Compiled stylesheets are also included in `dist/` folder.
- ```bash
- npm install quill@{{site.version}}
- ```
- ### Direct Download
- Quill builds are also available for direct download on every [release](https://github.com/quilljs/quill/releases/tag/v{{site.version}}).
- ### Source
- And of course the complete source code is always available on [GitHub](https://github.com/quilljs/quill).
- ```bash
- git clone git@github.com:quilljs/quill.git
- ```
|