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

webpack-wxapp-module-plugin

v4.10.8

Published

[![NPM version][npm-image]][npm-url]

Downloads

119

Readme

webpack-wxapp-module-plugin

NPM version

一、简介

微信小程序webapck插件

支持哪些特性?
  • 仅需要配置entry 指向app.js即可 例如 entry:'./app.js'
  • 支持node_modules 模块引用
  • 支持node_modules 组件引用
  • node_modules平行移植 打包后的require会自动修改引用路径 例如: require('lodash') 那么当打包后在dist下的引用变为 require('./node_modules/lodash/inde.jx)
  • 自动分析需要编译的文件,产出wxapp需要的目录结构 例如pages以及components,.wxml引用的图片,以及app.json引用的图片以及页面与分包加载页面等
  • 产出的目标文件均为commonjs模块类型,无webpack_require自带的模块规范与引用,方便调试识别
  • 可以搭配loaders与其他plugin使支持es6-es7以及文件图片压缩
  • 只需要将微信小程序指向dist(webpack设定的output目录)目录即可

二、安装

npm install webpack-wxapp-module-plugin --save-dev

三、使用

Webpack 简单配置

var WxappModulePlugin  =require('webpack-wxapp-module-plugin');

var appjsRoot = path.resolve('');

module.exports = {
  context:appjsRoot,
  entry: {
    'app': ['./app.js']
  },
  output: {
    filename:  '[name]',
    chunkFilename:'[name]',
    libraryTarget: 'commonjs2'
  },
  plugins:[
    new WxappModulePlugin('npm_modules', ['.scss'], {
      // 全局组件
      globalComponents:{
        // 'layout-master':'my/index'
      }
    }),
  ],
  module:{
    rules:[
      // wxs
      {
        test: /\.wxs$/,
        use: [
          {
            loader: 'file-loader',
            options: {
              name: '[path][name].wxml',
              esModule: false,
            },
          },
          'webpack-wxapp-module-plugin/wxs-loader',
        ],
      },
      // wxml
       {
        test: /\.wxml$/,
        use: [
          {
            loader: 'file-loader',
            options: {
              name: '[path][name].wxml',
              esModule: false,
            },
          },
          'webpack-wxapp-module-plugin/wxml-loader',
          {
            // 母版页支持, 即:可以定义一个app.wxml 或者定义一个组件包裹在所有页面组件
            loader: 'webpack-wxapp-module-plugin/layout-loader',
            options:{
              // 组件模式支持,
              // component:'master-layout'
            }
          },
        ],
      },
    ]
  }
}

四、关于组件引用

在部分情况下,我们需要引用小程序UI组件库,那么通常依赖是安装在node_modules下, webpack-wxapp-module-plugin 提供了node_modules下组件引用,例如:

{
  "usingComponents":{
    "i-button":"iview-weapp/dist/button"
  }
}

五、推荐用例

freedom

六、开源许可

基于 MIT License 开源,使用代码只需说明来源,或者引用 license.txt 即可。