# 下载
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
- 更多模块