当前位置: 首页 > 文档资料 > San CLI 中文文档 >

san-cli

优质
小牛编辑
125浏览
2023-12-01

San-CLI

A CLI Tooling based on San.js for rapid development

Full Docs

Features

  • Complete project scaffolding.
  • webpack-based with zero configuration.
  • Extensible command line and webpack packaging plugins.

San CLI takes into account the San ecosystem while trying to achieve universal configuration. At the beginning of the design phase, we aimed to be not limited to the San application scope, but to make a general and customizable front-end development tooling.

Installation

San CLI requires Node.js version 8.16.0 or above (8.16.0+ recommended).

# use npm
npm install -g san-cli
# or use yarn
yarn global add san-cli

If you want to use San CLI only in the project, you can add it to the devDependencies of the project package.json and then use npm-scripts.

After installation, you can view the help information with the following command:

san -h

For more information, visit https://ecomfe.github.io/san-cli.

Contributing

San CLI uses Yarn Workspaces for local development.

First clone the project to your computer, then install dependencies:

# install dependencies
yarn

For design details, please read architecture.

Testing

# test all
yarn test
# or test one specific package
yarn test [packageName]
# such as
yarn test san-cli

Debug Log

The debug module is used in the San CLI, so if you need to debug or see some information you can use the DEBUG variable. In San CLI, the scope of debug is san-cli:, and common variables include:

  • perf: Output performance log of San CLI itself.
  • babel: Output Babel related configuration.
  • service: Output service layer log.
  • webpack:closeDevtool: Close Devtools and no longer output eval type code. Directly output the packaged code for debugging.
  • webpack:build: Output webpack build related configuration.
  • webpack:serve: Output webpack serve related configuration.
  • webpack:config: Output the final config object of webpack.