ant-design/docs/react/install_en.md

38 lines
879 B
Markdown
Raw Normal View History

2015-12-18 02:41:11 +08:00
## Using npm to install
**We recommend use npm to install**Not only it makes development easieralso you can take advantage of the whole ecosystem.
If using npm to install, you could use `import` or `require`.
2015-12-29 16:14:59 +08:00
Stable version
2015-12-18 02:41:11 +08:00
[![npm package](http://img.shields.io/npm/v/antd.svg?style=flat-square)](https://www.npmjs.org/package/antd)
```bash
$ npm install antd --save
```
2015-12-29 16:14:59 +08:00
Beta version
2015-12-18 02:41:11 +08:00
[![](https://cnpmjs.org/badge/v/antd.svg?&tag=beta&subject=npm)](https://www.npmjs.org/package/antd)
```bash
$ npm install antd@beta --save
```
> **Past releases**https://github.com/ant-design/ant-design/releases
2015-12-29 16:14:59 +08:00
## Development tool
2015-12-18 02:41:11 +08:00
We provide React components [Scaffold tool](https://github.com/ant-design/antd-init).
```bash
$ npm install antd-init -g
```
Inside an empty folder run `antd-init` to init.
2016-01-19 17:30:58 +08:00
> [More development tools](http://ant-tool.github.io/)。