tma-cli
tma
是抖音小程序官方提供的命令行工具
安装
建议在全局安装 tma
npm install -g tt-ide-cli
使用
设置小程序 token
设置小程序的 token, 用于替代登录态
命令行使用
Usage: tma set-app-config <appid> --token <token>
Example: tma set-app-config ttxxxxxxx --token 123123123
代码调用
const tma = require('tt-ide-cli');
tma.setAppConfig({
appId: 'ttxxxxxx',
config: {
token: '123123123',
},
});
设置全局配置
主要用于配置工具的全局代理
命令行使用
Usage: tma set-config [options]
Set tt-ide-cli config
Options:
--proxy <proxy> Set global proxy(配置全局代理)
--default Use default(恢复为默认配置)
代码调用
const tma = require('tt-ide-cli');
await tma.setConfig({
proxy: 'http://127.0.0.1:8899';
});
创建新项目
在当前目录下,以给定的项目名字创建一个空白的小程序项目
命令行使用
Usage: tma create [options] <project-name>
Create a new project with given name in current folder
Options:
-f, --force Overwrite target directory if it exists
--template <template> rich | empty (default: empty)
--type <type>', 'js | ts (default: js)
--targetDir <targetDir> Target directory
代码调用
const tma = require('tt-ide-cli');
await tma.create({
projectName: 'projectName',
force: false,
template: 'rich',
targetDir: '/path/to/targetDir',
type: 'js',
});
打开已有项目
在小程序开发者工具中打开给定目录的项目,如果给定的目录不存在,则仅打开开发者工具
命令行使用
Usage: tma open <project-path> --mode lite
Open target project by path
Options:
--mode <mode> IDE mode(eg. full, lite)
代码调用
const tma = require('tt-ide-cli');
await tma.open({
project: {
path: 'projectPath',
mode: 'lite',
},
});
登录
登录到开发者平台
命令行使用
Usage: tma login [options]
Login to the developer platform
Options:
-m, --mobile Login by mobile
-e, --email Login by email
-p, --proxy <proxy> Login with proxy
-h, --help Output usage information
通过 email 登录
命令行使用
Usage: tma login-e [email] [password]
Login to the developer platform by E-mail
Options:
-p, --proxy <proxy> Login with proxy
-h, --help Output usage information
代码调用
const tma = require('tt-ide-cli');
await tma.loginByEmail({
email: 'email',
password: 'password',
});
通过手机号登录
通过调用tma.sendVerificationCodeToPhone({ phoneNumber: 'phoneNumber' })
可以发送验证码
代码调用
const tma = require('tt-ide-cli');
await tma.loginByPhone({
phoneNumber: 'phoneNumber',
code: 'code',
});
登出(清除本地 session)
命令行使用
Usage: tma logout
Logout and clear the session.
代码使用
const tma = require('tt-ide-cli');
await tma.logout();
本地项目体积
查看本地项目的文件体积
命令行使用
Usage: tma project-size [--json] entry
Output current project package size information.
Options:
--json Output as JSON string
代码调用
const tma = require('tt-ide-cli');
const result = await tma.getProjectSize(projectPath);
预览小程序
将项目上传后,扫码二维码来预览小程序(如果要设置 miniapp-query, miniapp-scene 等启动参数需要同时设置 miniapp-path 参数,否则将不会生效)。
命令行使用
Usage: tma preview [options] [entry]
Preview project by remote
Options:
--disable-cache Preview project without local cache
-s, --small Use small QR Code, it may fail in some environments
-c, --copy Copy remote url to clipboard
-p, --proxy <proxy> Preview with proxy
--miniapp-path <path> Miniapp path
--miniapp-query <query> Miniapp query
--miniapp-scene <scene> Miniapp scene
--miniapp-launch-from <launchFrom> Miniapp launchFrom
--miniapp-location <location> Miniapp location
--qrcode-output <qrcodeOutputPath> Qrcode output path
代码调用
const tma = require('tt-ide-cli');
interface ProjectQRCode {
expireTime: number;
shortUrl: string;
originSchema: string;
qrcodeSVG?: string;
qrcodeFilePath?: string;
useCache: boolean;
}
const previewResult: ProjectQRCode = await tma.preview({
project: {
path: 'projectPath',
},
page: {
path: '',
query: '',
scene: '',
launchFrom: '',
location: '',
},
qrcode: {
format: 'imageSVG',
output: '',
options: {
small: false,
},
},
cache: true,
copyToClipboard: true,
});
上传项目
把项目上传到开发者平台进行发布
命令行使用
- app-changelog 为必填参数,其余为可选参数,其中 app-version 的默认值为前序版本号末位加一。
Usage: tma upload [options] [entry]
Upload project to the developer platform
Options:
-v, --app-version <appVersion> App version (eg: [major].[minor].[patch])
-c, --app-changelog <appChangelog> Changelog for this version
-p, --proxy <proxy> Update request proxy
-cp, --copy Copy remote url to clipboard
--qrcode-output <qrcodeOutputPath> Qrcode output path
--channel <channel> Test Channel
代码调用
const tma = require('tt-ide-cli');
interface ProjectQRCode {
expireTime: number;
shortUrl: string;
originSchema: string;
qrcodeSVG?: string;
qrcodeFilePath?: string;
useCache: boolean;
}
const uploadResult: ProjectQRCode = await tma.upload({
project: {
path: 'projectPath',
},
qrcode: {
format: 'imageSVG',
output: '',
options: {
small: false,
},
},
copyToClipboard: true,
changeLog: 'changelog',
version: '1.0.0',
needUploadSourcemap: true,
channel: '1',
});
小程序 host
查询小程序支持的 host 。
命令行使用
Usage: tma hosts [appid]
Get Audit Host List
tma hosts tt07e3715e98c9xxxx
代码调用
const tma = require('tt-ide-cli');
await tma.getAuditHostsList({ appid: '' });
小程序提审
小程序提审
- 小程序首次提审,需要通过 defaultSsUrl 属性给定一个截图路径;
推荐首次提审时,到开发者平台上传合规截图;
- 后续提审会复用前一次提审的截图;
- 现在支持的 host 参数已有
douyin
toutiao
douyin_lite
tt_lite
- 更多 host 可以通过
tma hosts [appid]
的命令查询
命令行使用
Usage: tma audit [options] [appid]
Audit project in the developer platform
Options:
--host <hosts> Host Apps(eg: douyin,toutiao,tt_lite)
--auto-publish <boolean> Auto Publish After Audit
--channel <channel> Test channel
tma audit --host douyin,toutiao,tt_lite tt07e3715e98c9xxxx
代码调用
const tma = require('tt-ide-cli');
await tma.audit({
appid: '',
host: [],
autoPublish: true,
defaultSsUrl: '/tmp/picture/default.png',
});
获取小程序信息
命令行使用
Usage: tma get-meta [options] [appid]
Get appid meta
代码调用
const tma = require('tt-ide-cli');
interface MiniappMetaInfo {
version: String;
}
const metaResult: MiniappMetaInfo = await tma.getMeta({
appid: 'appid',
});
构建 NPM
对应开发者工具 构建 NPM 功能
命令行使用
Usage: tma build-npm [options]
Build npm
Options:
--project-path Project path
代码调用
const tma = require('tt-ide-cli');
await tma.buildNpm({
project: {
path: 'projectPath',
},
});