ant-design/docs/react/install_en.md
2016-01-19 17:30:58 +08:00

38 lines
879 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## 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`.
Stable version
[![npm package](http://img.shields.io/npm/v/antd.svg?style=flat-square)](https://www.npmjs.org/package/antd)
```bash
$ npm install antd --save
```
Beta version
[![](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
## Development tool
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.
> [More development tools](http://ant-tool.github.io/)。