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

vue-cli-plugin-uniapp-third-devtools

v1.0.2

Published

An Vue-cli plugin for open third devtools for uni-app cli project.

Downloads

40

Readme

vue-cli-plugin-uniapp-third-devtools

作用

在uni-app cli 项目中,编译运行后自动打开对应平台的开发工具

安装

npm install -D vue-cli-plugin-uniapp-third-devtools

配置

在你的vue.config.js中放入以下配置

const platforms = Object.freeze({
    APP_PLUS: 'app-plus',
    MP_360: 'mp-360',
    MP_ALIPAY: 'mp-alipay',
    MP_BAIDU: 'mp-baidu',
    MP_KUAISHOU: 'mp-kuaishou',
    MP_QQ: 'mp-qq',
    MP_TOUTIAO: 'mp-toutiao',
    MP_WEIXIN: 'mp-weixin',
    QUICKAPP_NATIVE: 'quickapp-native',
    QUICKAPP_WEBVIEW: 'quickapp-webview',
    QUICKAPP_WEBVIEW_HUAWEI: 'quickapp-webview-huawei',
    QUICKAPP_WEBVIEW_UNION: 'quickapp-webview-union'
})
module.exports = {
    pluginOptions: {
        thirdDevToolsConfig: [
            {
                //微信平台配置
                targetBuildPlatform: platforms.MP_WEIXIN,
                //微信小程序开发工具在系统中的绝对路径
                //windows 系统注意将路径改为双斜杠
                execPath: 'C:\\path to your\\wechatdevtools',
                //MacOS 默认路径
                //execPath: '/Applications/wechatwebdevtools.app/Contents/MacOS',
            },
            {
                 targetBuildPlatform: platforms.MP_QQ,
                 execPath: '/Applications/qqdevtools.app/Contents/MacOS/',
            }
        ]
    }
}

使用

1. 在uni-app cli创建的项目中安装本插件。
2. 在vue.config.js 中配置本插件需要的参数
3. windows 系统注意将执行路径路径改为双斜杠

说明

原理:当你在uni-app cli项目中执行类似:"dev:mp-weixin": "cross-env NODE_ENV=development UNI_PLATFORM=mp-weixin vue-cli-service uni-build --watch",
命令时。 它启动了一个HRM(Hot Module Replacement) 的server。
本插件(vue-cli-plugin)修改了 uni-build 命令。