快速开始

如果是阿里内部开发者,请参考文档,可直接打通内部流程。

初始化项目

可以选择使用 npm 或者 yarn 工具进行项目初始化,如下输入项目名即可:

  1. $ npm init ice <projectName>
  2. # or
  3. $ yarn create ice <projectName>

选择模板

可以根据实际情况选择 TypeScript 和 JavaScript 模板,其中各包含一个轻量的 Lite 和功能完善的 Pro 模板:

  1. ? Please select a template (Use arrow keys)
  2. A lightweight TypeScript template.
  3. A lightweight JavaScript template.
  4. Pro TypeScript templateIntegrated rich features such as charts, lists, forms, etc.
  5. Pro JavaScript templateIntegrated rich features such as charts, lists, forms, etc

选择模板会自动创建项目,看到如下信息说明项目创建成功:

  1. download npm tarball successfully.
  2. info clean package.json...
  3. Initialize project successfully.
  4. Starts the development server.
  5. cd <projectName>
  6. npm install
  7. npm start
  8. Done

启动项目

按照上面的提示,进入新建的项目安装依赖即可:

  1. $ cd <projectName>
  2. # 安装依赖
  3. $ npm install
  4. # 启动项目
  5. $ npm start

执行上述命令后,会自动打开浏览器窗口访问 http://localhost:3333,这时应该看到默认的页面。