
Security News
New React Server Components Vulnerabilities: DoS and Source Code Exposure
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.
@antmove/template-plugin
Advanced tools
# wx-tt-plugin
<p><a class='readme-antmove-logo' href="https://github.com/ant-move/antmove" target="_blank" rel="noopener noreferrer"><img style='margin-left:0px;' width="200" src="https://img.alicdn.com/tfs/TB1ktoia.D1gK0jSZFGXXbd3FXa-765-765.png" alt="antmove logo"></a></p>
## 介绍
* 微信转头条小程序插件
> 一键实现微信小程序项目到头条小程序的迁徙,不再为重复开发而烦恼。
## 目录
* <a href='#安装'>安装</a>
* <a href='#VsCode1'>VsCode 转换插件</a>
* <a href='#VsCode'>VsCode 编译步骤</a>
* <a href='#使用npm或yarn安装'>使用 npm 或 yarn 安装</a>
* <a href='#快速开始'>快速开始</a>
* <a href='#命令行使用'>命令行使用</a>
* <a href='#命令行参数说明'>命令行参数说明</a>
* <a href='#Node.js'>Node.js 使用方式</a>
* <a href='#API'>API</a>
* <a href='#transformFramework'>transformFramework</a>
* <a href='#App'>App</a>
* <a href='#贡献'>贡献</a>
* <a href='#协议'>协议</a>
* <a href='#联系'>联系</a>
<span id='安装'></span>
## 安装
<span id='VsCode1'></span>
### vscode 转换插件
在 vscode 扩展中搜索 `Antmove` 下载安装 Antmove vscode 转换插件实现一键转换。
<p>
<img style='max-width: 800px;margin-left: 0;' src='https://img.alicdn.com/tfs/TB1KqazdhD1gK0jSZFyXXciOVXa-1154-516.png'>
</p>
<span id='VsCode'></span>
### VsCode 编译步骤
* 安装扩展(Antmove - antmove-vscode-plugin)
* 在 VsCode 中打开要转换的项目
* 打开 VsCode 命令面板
* Mac: `command + shift + p`
* Windows: `ctrl + shift + p`
* 输入 `Antmove`
* 运行 `Antmove: Run antmove wx-tt` 命令,实现微信小程序转换头条小程序的转换
* 运行如上命令后会给出一个弹窗,选择转换后生成代码存储目录
* 转换完成
* [antmove-vscode-plugin](https://marketplace.visualstudio.com/items?itemName=antmove-app.antmove-vscode-plugin&ssr=false)
> 本插件依赖于 vscode 代码编辑器,安装了 vscode 的用户才能使用。
<span id='使用npm或yarn安装'></span>
### 使用 npm 或 yarn 安装
> 我们推荐使用 npm 或 yarn 的方式进行开发,不仅可在开发环境轻松调试,也可放心地在生产环境打包部署使用,享受整个生态圈和工具链带来的诸多好处。
* 全局安装
```bash
$ npm install antmove -g
```
* 本地安装
```bash
$ npm install antmove --save
```
> 如果你的网络环境不佳,推荐使用 [cnpm](https://github.com/cnpm/cnpm)。
<span id='快速开始'></span>
## 快速开始
<span id='命令行使用'></span>
### 命令行使用
```bash
npm i -g antmove
```
> 通过 npm 或 yarn 全局安装才能使用如下命令行
* `antmove wx-tt`(使用前请将终端切换到需转换编译的支付宝小程序项目路径)
```bash
antmove wx-tt
```
* `antmove` - 该命令更加灵活,可配置输出输出目录/编译模式等
```bash
antmove wx-tt -i ./wechat-mini/project -o ./dist/tt-mini/project --env development
```
> 如上的命令表示将 `./wechat-mini/project` 微信小程序项目转换为头条小程序项目,转换到 `./dist/tt-mini/project` 目录
> 如果你不想输入参数,可以体验交互式的命令方式,执行 `antmove` 即可。
### 命令行参数说明
* `--type,-t`
* 可选,(wx-tt),选择编译工具,此参数代表选择的微信转头条的工具
* `--input,-i`
* 可选,编译源码目录,如果不传则是当前目录
* `--output,-o`
* 可传,编译输出目录
* `--component,-c`
* 可传,组件纬度转换,可单独组件或插件
* `--env,-e`
* 可选(development/production),编译模式,生产模式代码会压缩,无编译日志及运行时日志
<span id='Node.js'></span>
### Node.js 使用方式
#### 示例
```js
const path = require('path');
const transformFramework = require('antmove');
const AlipayPlugin = require('@antmove/wx-tt');
let outputPath = path.join(__dirname, '../../dist', '/toutiaomini-demo');
let inputDirPath = path.join(__dirname, '../../examples/miniprogram-demo/miniprogram');
const App = transformFramework();
App.use(
AlipayPlugin,
{
entry: inputDirPath,
dist: outputPath,
env: 'development'
})
.start();
```
<span id="API"></span>
## API
### `transformFramework`
工具实例生成函数。
```js
const transformFramework = require('antmove');
const App = transformFramework(); // 得到的 app 实例即可进行转换处理操作
```
### `App`
* `use` | `Function` - `App.use(plugin, pluginOptions)` - 挂载插件到实例上,可挂载多个,按挂载顺序执行
* `plugin`: 转换插件
* `pluginOptions`: 转换插件配置项
* `entry` | `String` - 转换源码目录
* `dist` | `String` - 转换后代码输出目录
* `env` | `String` - 编译环境设置(env/prod)
* 默认值为生产环境
* `start` | `Function` - 开始编译操作
<span id="贡献"></span>
## 贡献
欢迎参与 Antmove 项目的开发建设和讨论。
> 提交 pull request 之前请先提 [Issue 讨论](https://github.com/ant-move/antmove/issues).
<span id="协议"></span>
## 协议
[GPL](https://choosealicense.com/licenses/gpl-3.0/)
<span id="联系"></span>
## 联系
如果您在使用的过程中碰到问题,可以通过下面几个途径寻求帮助。
* 钉钉微信交流群: <img width='200px' src='https://ant-move.github.io/website/img/contact-dingding.jpg'/> <img width='200px' src='https://cache.amap.com/ecology/tool/antmove/web/assets/02.JPG'/>
* 邮件:amap-appx@service.autonavi.com
FAQs
transform wechat miniprogram to tt miniprogram tool.
We found that @antmove/template-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.