💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# 下载 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 ```