安装miniprogram-cli
bash
F:\business-system\weixin-app-order>npm install -g @wechat-miniprogram/miniprogram-cli
npm warn deprecated inflight@1.0.6: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
npm warn deprecated rimraf@2.7.1: Rimraf versions prior to v4 are no longer supported
npm warn deprecated glob@7.2.3: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
added 180 packages in 38s
20 packages are looking for funding
run `npm fund` for details
验证安装
bash
F:\business-system\weixin-app-order>miniprogram --help
Usage: cli [options] [command]
Options:
-V, --version output the version number
-h, --help output usage information
Commands:
init [options] [dirPath] create a project with template project
upgrade [options] [dirPath] upgrade the miniprogram custom component framwork
cache [options] show the path of template projects cache
F:\business-system\weixin-app-order>miniprogram -V
0.0.7
F:\business-system\weixin-app-order>miniprogram init --help
Usage: init [options] [dirPath]
create a project with template project
Options:
-t, --type <type> template project type, only accept "custom-component", "miniprogram", "plugin", "game"
-f, --force all files will be overrided whether it already exists or not
-p, --proxy <url> http/https request proxy
-n, --newest use newest template to initialize project
-h, --help output usage information
初始化微信小程序
bash
miniprogram init --type miniprogram . --newest