2016-03-31 14:17:09 +08:00
|
|
|
|
---
|
|
|
|
|
order: 2
|
|
|
|
|
english: 安装
|
|
|
|
|
---
|
2015-05-09 18:52:17 +08:00
|
|
|
|
|
2015-10-27 14:26:21 +08:00
|
|
|
|
## 使用 npm 安装
|
2015-07-04 16:20:50 +08:00
|
|
|
|
|
2015-09-15 01:05:14 +08:00
|
|
|
|
**我们推荐使用 npm 的方式进行开发**,不仅可在开发环境轻松调试,也可放心地在生产环境打包部署使用,享受整个生态圈和工具链带来的诸多好处。
|
2015-07-06 15:51:26 +08:00
|
|
|
|
|
2015-12-16 15:14:42 +08:00
|
|
|
|
可以通过 npm 直接安装到项目中,使用 `import` 或 `require` 进行引用。
|
2015-07-04 16:31:48 +08:00
|
|
|
|
|
2015-12-29 16:14:59 +08:00
|
|
|
|
稳定版:
|
2015-10-27 14:26:21 +08:00
|
|
|
|
|
2015-09-09 10:25:58 +08:00
|
|
|
|
[![npm package](http://img.shields.io/npm/v/antd.svg?style=flat-square)](https://www.npmjs.org/package/antd)
|
2015-09-08 12:15:00 +08:00
|
|
|
|
|
2015-07-04 16:20:50 +08:00
|
|
|
|
```bash
|
|
|
|
|
$ npm install antd --save
|
|
|
|
|
```
|
2015-07-05 23:38:13 +08:00
|
|
|
|
|
2015-12-29 16:14:59 +08:00
|
|
|
|
开发版本:
|
2015-08-11 21:07:49 +08:00
|
|
|
|
|
2015-09-08 12:15:00 +08:00
|
|
|
|
[![](https://cnpmjs.org/badge/v/antd.svg?&tag=beta&subject=npm)](https://www.npmjs.org/package/antd)
|
|
|
|
|
|
2015-08-11 21:07:49 +08:00
|
|
|
|
```bash
|
|
|
|
|
$ npm install antd@beta --save
|
|
|
|
|
```
|
|
|
|
|
|
2015-10-27 14:26:21 +08:00
|
|
|
|
> **历史版本**:https://github.com/ant-design/ant-design/releases
|
|
|
|
|
|
|
|
|
|
|
2016-04-03 16:22:51 +08:00
|
|
|
|
## 浏览器引入
|
|
|
|
|
|
2016-04-07 09:28:25 +08:00
|
|
|
|
我们在 `antd/dist` 目录下提供了 `antd.js` `antd.css` 以及 `antd.min.js` `antd.min.css` 用于一次性引入所有的 antd 组件,也可以使用 [npmcdn](https://npmcdn.com/) 引入。
|
2016-04-03 16:22:51 +08:00
|
|
|
|
|
2016-04-07 14:12:52 +08:00
|
|
|
|
> 对于 1.0 之前的版本,我们也提供了一个 [构建的例子](https://github.com/ant-design/antd-init/tree/master/examples/build-antd-standalone) 以供参考。
|
|
|
|
|
|
2015-10-27 14:26:21 +08:00
|
|
|
|
## 开发工具
|
2015-07-06 15:51:26 +08:00
|
|
|
|
|
2015-12-16 15:14:42 +08:00
|
|
|
|
我们提供了 React 前端应用开发的 [脚手架工具](https://github.com/ant-design/antd-init),可以安装到全局直接使用。
|
2015-07-06 15:51:26 +08:00
|
|
|
|
|
|
|
|
|
```bash
|
2015-12-16 15:14:42 +08:00
|
|
|
|
$ npm install antd-init -g
|
2015-07-06 15:51:26 +08:00
|
|
|
|
```
|
|
|
|
|
|
2015-12-16 15:14:42 +08:00
|
|
|
|
在空目录运行 `antd-init` 可以初始化一个 antd 的前端应用。
|
2015-07-06 15:51:26 +08:00
|
|
|
|
|
2016-04-03 16:22:51 +08:00
|
|
|
|
最新的脚手架结构可以到这里 [查看](https://github.com/ant-design/antd-init/tree/master/boilerplate),建议持续关注更新以便获得最新的开发工程特性。
|
|
|
|
|
|
2016-01-19 17:30:58 +08:00
|
|
|
|
> 更多开发工具 [使用方式](http://ant-tool.github.io/)。
|