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

mpvue-to-uniapp

v1.0.6

Published

mpvue to uniapp

Downloads

10

Readme

mpvue to uniapp

mpvue 项目转换为 uniapp 项目,本工具只实现工程结构和基本项目配置的转换,其他项目自定义配置需要自行处理。

安装

$ npm i mpvue-to-uniapp -g

升级版本

$ npm update mpvue-to-uniapp -g

使用

进入 mpvue 工程目录,执行转换命令:

m2u

或在任意目录,执行转换命令,并指定项目路径:

m2u path/

迁移步骤

  1. 克隆 mpvue 项目至新文件夹
git clone [email protected]:front-end/applet-saas-car-assistant.git
  1. 安装 mpvue-to-uniapp 转换工具
npm i mpvue-to-uniapp -g
  1. 进入 mpvue 项目目录,执行转换命令
m2u
  1. webpack 工程配置迁移。项目中通常会自定义一些 webpack 配置,比如:alias、DefinePlugin、CopyWebpackPlugin 等,需要在项目根目录下新建 vue.config.js 文件,然后将mpvue 项目中自定义的webpack 配置项复制至此文件内。参考:https://uniapp.dcloud.io/collocation/vue-config

  2. 解决两个框架的子组件生命周期不一致问题:参考如何解决uni-app子组件不支持小程序页面生命周期问题。如果项目子组件中使用小程序的页面生命周期,在 src/main.js 中引入 hackPageLifecycle.js 即可。如果项目子组件没有使用小程序的页面生命周期,可以忽略。

  3. 安装依赖,启动开发服务。检查各个页面是否正常运行,处理页面内特殊逻辑,或 uniapp 不兼容的语法。

其他说明

本插件仅针对微信小程序全面支持,其他端需要自行修改项目配置文件 manifest.json。