From 396f948159f0d881f6d3e000ca4650ead74d68c6 Mon Sep 17 00:00:00 2001 From: afc163 Date: Mon, 6 Jul 2015 15:51:26 +0800 Subject: [PATCH] update download.md --- docs/download.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/docs/download.md b/docs/download.md index fbb297362c..ae26410c1c 100644 --- a/docs/download.md +++ b/docs/download.md @@ -5,6 +5,8 @@ --- +可以直接下载文件或使用 npm 进行安装。 + ## 直接下载 - **开发版** 1.0.2 @@ -33,6 +35,8 @@ ## npm +我们推荐使用 npm 的方式进行开发,这样可以享受整个生态圈和工具链带来的诸多好处。 + [![npm package](https://img.shields.io/npm/v/antd.svg?style=flat-square)](https://www.npmjs.org/package/antd) 可以通过 npm 直接安装到本地,使用 `require` 或 `import` 进行引用。 @@ -41,6 +45,27 @@ $ npm install antd --save ``` +## 开发工具 + +Ant Design 提供了开发构建的命令行工具,可以安装到全局直接使用: + +```bash +$ npm install antd-bin -g +``` + +或者安装到仓库下,使用 `package.json` 的 `scripts` 字段来配置命令: + +```bash +$ npm install antd-bin --save-dev +``` + +```json +"scripts": { + "dev": "antd server", + "build": "antd build" +} +``` +