npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

wwto

v2.0.10

Published

weChat mini-program to other mini-program

Downloads

16

Readme

wwto Build Status license javascript style guide version

wwto: wuba wechat mini-program to other mini-program

简介

wwto是一款支持将原生微信小程序转换成其他小程序的工具集合。
使用wwto,几乎不需要对已有的微信小程序做任何改动,可以接近零成本获得百度小程序支付宝小程序头条小程序

前提

  • node >= 8.9.3
  • gulp <= 3.9.1

安装

  npm i wwto -g

  #or
  yarn global add wwto

使用

**注意:**如果包含插件,请将插件的源码拷贝到:src/plugins/xxx目录下,xxx为被调用插件名称。

命令行

  # 查看帮助
  wwto --help
  # 查看转换命令使用说明
  wwto build --help
  # 查看源码兼容性检测使用说明
  wwto lint --help
  # 查看版本号
  wwto -v

  # 转换成百度小程序
  wwto build -p baidu -s src -t dist/baidu
  # 检测源码对百度小程序的兼容性
  wwto lint -p baidu -s src
  
  # 转换成支付宝小程序
  wwto build -p alibaba -s src -t dist/alibaba
  # 检测源码对支付宝小程序的兼容性
  wwto lint -p alibaba -s src
  
  # 转换成头条小程序
  wwto build -p toutiao -s src -t dist/toutiao
  # 检测源码对头条小程序的兼容性
  wwto lint -p toutiao -s src
  
  # 转换成百度&&支付宝&&头条小程序
  wwto build -s src -t dist
  # 检测源码对百度&&支付宝&&头条小程序的兼容性
  wwto lint -s src
  
  # 转换插件调用方式(提供给wbmp使用,原生微信小程序转换已集成到build命令)
  wwto plugin -s dist/baidu

启动项目

  npm install
  # 安装依赖

  npm run build
  # 构建项目

  npm run dev
  # 运行项目

  jest --coverage
  # 检测单元测试覆盖率

打包工具

const gulp = require('gulp');
const wwto = require('wwto');

// 转换成百度/支付宝/头条小程序
gulp.task('build', function(cb) {
    wwto.toAll({
      source: './src',
      baiduTarget: './dist/baidu',
      alibabaTarget: './dist/alibaba',
      toutiaoTarget: './dist/toutiao',
    });
});

// 检测源码对各平台的兼容性
gulp.task('lint', function(cb) {
    wwto.lintAll({
      source: './src'
    });
});

注意事项

注意事项是各平台不支持且无法通过本工具转换完成的一些点,如果要开发跨平台的应用需要规避或者降级处理。

百度小程序

  • bind*={{str}} str只能是函数名(字符串),不能包含表达式计算(如:bindtap="flag ? 'fn1' : 'fn2'"
  • wx:for={{arr}} arr只能是变量名(字符串),不能包含表达式计算(如:wx:for="{{flag ? arr1 : arr2}}"
  • 在同一个标签上,wx:forwx:if不能同时使用
  • wxml不支持hidden
  • 通过properties绑定的数据,在子组件更新后不会同步到父组件(重要)
  • 图片的src属性不能用数组赋值(如:<image src="{{arr}}"></image>
  • 不要使用setData保存视图不需要的变量(如原生变量:Animation),继承字段会被丢弃

头条小程序

  • 不支持组件(如:movable-areamovable-viewcover-viewcover-imagemapaudiocanmera等)
  • websocket不能使用全局事件(如:wx.onSocketOpen
  • 录音功能没有全局方法(wx.startRecord, wx.stopRecord
  • 不支持背景音频
  • 不支持实时音视频通话
  • 条件/循环渲染,不能进行函数调用运算(如:wx:if="{{['aa', 'bb'].indexOf('aa')===-1}}"
  • 图片的src属性不能用数组赋值(如:<image src="{{arr}}"></image>
  • wx:for不支持对象,从源码规避(转换一下)
  • 不支持selectComponent,可以通过监听属性的observer来实现外部的调用
  • 自定义组件不能响应事件(如:bindTap),需要添加一层容器来捕获事件

支付宝小程序

  • json文件或模板绝对路径必须以/开头,相对路径必须以./开头
  • 自定义组件命名只能使用短横线(custom-com)
  • fetch是全局只读对象,不能对其赋值
  • require,参数只能是字符串直接量,不能是变量(如:var path = '/a/b/c'; require(path);
  • triggerEvent(name, data)name目前只支持字符串直接量,不支持变量
  • swiper组件手动设置current后,不会自动触发bindChange事件,如果需要主动触发
  • 只能存在一个websocket连接
  • 组件样式不是隔离的,父子组件之间class不要重复
  • 自定义组件不能响应事件(如:bindTap),需要添加一层容器来捕获事件
  • 唤起键盘不会上推position:fixed的元素
  • 文件名不能包含'@'字符

贡献

欢迎参与 wwto 项目的开发建设和讨论。

提交 pull request 之前请先提 [Issue 讨论].