ksky521 / san-cli

A CLI Tooling based on San.js for rapid development.

Home Page:https://ecomfe.github.io/san-cli

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

San-CLI

A CLI Tooling based on San.js for rapid development
NPM version Issues License

English | 简体中文

🎉 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 12.0 or above (12.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 PRs Welcome

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.

📝 Documentation

For detailed documentation, please check the San CLI docs.

🍻 Companions

☀️ License

MIT

About

A CLI Tooling based on San.js for rapid development.

https://ecomfe.github.io/san-cli

License:MIT License


Languages

Language:JavaScript 92.0%Language:Less 7.8%Language:HTML 0.1%Language:Shell 0.0%Language:CSS 0.0%