You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

1.9 KiB

下载

  • category: 入门
  • order: 2

可以直接下载文件或使用 npm 进行安装。

直接下载

npm

我们推荐使用 npm 的方式进行开发,这样可以享受整个生态圈和工具链带来的诸多好处。

npm package

可以通过 npm 直接安装到本地,使用 requireimport 进行引用。

$ npm install antd --save

开发工具

Ant Design 提供了开发构建的命令行工具,可以安装到全局直接使用:

$ npm install antd-bin -g

或者安装到仓库下,使用 package.jsonscripts 字段来配置命令:

$ npm install antd-bin --save-dev
"scripts": {
  "dev": "antd server",
  "build": "antd build"
}