download.mdx 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. ---
  2. title: Download
  3. ---
  4. Quill comes ready to use in several convenient forms.
  5. ### CDN
  6. A globally distributed and available CDN is provided, backed by [jsDelivr](https://www.jsdelivr.com/).
  7. ```html
  8. <!-- Main Quill library -->
  9. <script src="{{site.cdn}}/quill.js"></script>
  10. <script src="{{site.cdn}}/quill.min.js"></script>
  11. <!-- Theme included stylesheets -->
  12. <link href="{{site.cdn}}/quill.snow.css" rel="stylesheet">
  13. <link href="{{site.cdn}}/quill.bubble.css" rel="stylesheet">
  14. <!-- Core build with no theme, formatting, non-essential modules -->
  15. <link href="{{site.cdn}}/quill.core.css" rel="stylesheet">
  16. <script src="{{site.cdn}}/quill.core.js"></script>
  17. ```
  18. ### NPM
  19. 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.
  20. ```bash
  21. npm install quill@{{site.version}}
  22. ```
  23. ### Direct Download
  24. Quill builds are also available for direct download on every [release](https://github.com/quilljs/quill/releases/tag/v{{site.version}}).
  25. ### Source
  26. And of course the complete source code is always available on [GitHub](https://github.com/quilljs/quill).
  27. ```bash
  28. git clone git@github.com:quilljs/quill.git
  29. ```