# 下載
Quill提供了多種下載使用方法。
## CDN
<!--
A globally distributed and available CDN is provided,
backed by [Amazon Cloudfront](https://aws.amazon.com/cloudfront/).
-->
Quill提供了全球分布可用的CDN,[Amazon Cloudfront](https://aws.amazon.com/cloudfront/)提供支持。
國內用戶推薦用七牛云提供的CDN。
```html
<!-- 官方CDN -->
<!--主庫-->
<script src="//cdn.quilljs.com/1.3.6/quill.js"></script>
<script src="//cdn.quilljs.com/1.3.6/quill.min.js"></script>
<!-- 主題樣式表-->
<link href="//cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet">
<link href="//cdn.quilljs.com/1.3.6/quill.bubble.css" rel="stylesheet">
<!-- 核心庫,不包含主題、格式化及非必要模塊 -->
<link href="//cdn.quilljs.com/1.3.6/quill.core.css" rel="stylesheet">
<script src="//cdn.quilljs.com/1.3.6/quill.core.js"></script>
<!-- 七牛云CDN -->
<script src="//cdn.staticfile.org/quill/1.3.6/quill.js"></script>
<script src="//cdn.staticfile.org/quill/1.3.6/quill.min.js"></script>
<link href="//cdn.staticfile.org/quill/1.3.6/quill.snow.css" rel="stylesheet">
<link href="//cdn.staticfile.org/quill/1.3.6/quill.bubble.css" rel="stylesheet">
<link href="//cdn.staticfile.org/quill/1.3.6/quill.core.css" rel="stylesheet">
<script src="//cdn.staticfile.org/quill/1.3.6/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.
-->
Quill可以作為一個[NPM](//www.npmjs.org/) 依賴添加到你的項目中,或者使用項目選項生成。同時編譯好的樣式表包含在`dist/`文件夾中。
```bash
npm install quill@1.3.6
```
## 直接下載
<!--
Quill builds are also available for direct download on every [release](https://github.com/quilljs/quill/releases/tag/v1.3.6).
-->
Quill編譯版每個[版本](https://github.com/quilljs/quill/releases/tag/v1.3.6)都支持直接下載。
## 源碼
<!--
And of course the complete source code is always available on [Github](https://github.com/quilljs/quill).
-->
當然所有的源碼都可在 [Github](https://github.com/quilljs/quill)上下載。
```bash
git clone git@github.com:quilljs/quill.git
```
- 前言
- 快速開始(quick_start)
- 下載(download)
- 配置(configuration)
- 格式(formats)
- API
- 內容(contents)
- 格式化(formatting)
- 選區(selection)
- 編輯器(editor)
- 事件(events)
- 模型(model)
- 擴展(extension)
- 增量(Delta)
- 模塊(modules)
- 工具欄(toolbar)
- 鍵盤(keyboard)
- 歷史記錄(history)
- 粘貼板(clipboard)
- 語法高亮(syntax)
- 主題(themes)
- 更多教程
- 為什么選擇Quill?
- 如何定制Quill?
- 設計Delta格式(未翻譯)
- 構建一個自定義模塊
- 將Quill加入你的編譯管線(未翻譯)
- Cloning Medium with Parchment
- 和其它富文本編輯器的對比(未翻譯)
- Designing the Delta Format
- 擴展模塊
- vue-quill-editor
- quill-image-extend-module
- quill-image-resize-module
- quill-image-drop-module
- quill-better-table
- quilljs-table
- 更多模塊