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

wieldy-webpack

v1.4.6

Published

易于使用的 webpack

Downloads

27

Readme

wieldy-webpack

推荐迁移到 vue-cli-plugin-wieldy-webpack

NPM version changelog license

使用对比

易于使用的 webpack

将通用的 webpack 配置做为一个模块封装起来

  • 封装繁琐的配置信息
  • 提供通用功能
  • 统一维护管理
  • 方便升级

为什么要易于使用?

  • webpack 需要的配置项太多了
    • 并不是每个人都需要深入去了解
    • 通常只要知道如何配置入口就可以了
  • 每个项目都存在着一些通用的 webpack 配置
    • babel-loader
    • css-loader
    • 等等
  • 每个项目都在一遍又一遍地复制着 webpack 的配置文件
    • 脚手架工程
    • webpack.base.conf.js
    • webpack.dev.conf.js
    • webpack.prod.conf.js
    • webpack.test.conf.js
  • 如果需要添加通用配置, 难道每个项目去修改一遍?
    • 为了优化性能, 统一添加一个 image-webpack-loader 怎么样?

怎样才能易于使用?

  • 简而言之: 重复的逻辑就需要封装
  • 但绝不过度封装, 增加学习成本
  • 仅封装配置, 完整的返回 webpack 的配置, 可以理解为返回了一份默认的 webpack 配置信息
  • 可以对返回的 webpack 配置再做扩展以适用不同的项目, 例如支持 vue/react

内置功能

  • 优选的默认配置
  • 多环境构建
  • mock server(扩展了 webpack dev server)
  • 随机端口启动开发服务器(webpack dev server)
  • 组件化构建, 方便提取和使用组件, 不用关心组件依赖的资源和样式
  • 支持多入口配置
  • 入口页面支持 layout 机制
  • 支持根据同一份源码, 生成多份不同的输出结果
    • 通过动态配置在 HTML 页面/JS 文件中注入参数来实现
  • 支持上传构建后的静态资源到 CDN(ftp)

使用方法

安装

npm install [email protected] [email protected] [email protected] --save-dev

新建并配置 webpack.config.js

var wieldyWebpack = require('wieldy-webpack');

module.exports = function(env) {
    return wieldyWebpack.createWebpackConfig(env = env ? env : {}).then(function(webpackConfig) {
        wieldyWebpack.createEntry('index/index.js', 'index.html', {
            env: env
        }).addToWebpackConfig(webpackConfig);

        return webpackConfig;
    });
};

使用示例

API

  • wieldyWebpack.createWebpackConfig 创建 webpack 配置
  • wieldyWebpack.createEntry 创建 entry(包括 HTML 入口)
  • wieldyWebpack.useLayout 使用 layout 模版

常见问题

其他实践