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

work-webpack

v0.0.2

Published

工作中开发的 webpack 插件 or loader

Downloads

1

Readme

work-webpack

工作中开发的 webpack plugins or loader

loader

VueTemplateLog

template 模版预发中 click 方法增加 log。(目前有性能问题,且不支持 vue3

在一个比较庞大的项目中想要找出相应的代码比较费劲的时候可以考虑使用该 loader

options

| 名称 | 类型 | 描述 | 默认值 | | :----------: | :---------: | :------------------ | :-------------- | | enable | {Boolean} | 是否开loader | 默认值: false | | events | {Array} | 哪些事件需要增加log | 默认值: [] |

Loader 使用案例

vueTemplateLog

loader 会动态生成 log

module.exports = defineConfig({
  transpileDependencies: true,

  chainWebpack: config => {
    config.module
      .rule('vue')
      .test(/\.vue$/)
      .use('vue-template-log')
      .loader('work-webpack/dist/vueTemplateLog')
      .options({
        events: ['cancel', 'ok', 'click'],
        enable: true
      })
      .end();
  }
});

vueTemplateLog

plugins

ModulesAnalysis

用于分析项目中 node_modules 使用的次数与方式。

分析出项目中每个包的使用情况,使开发者能够分析哪些包可以更进一步的做优化。

options

| 名称 | 类型 | 描述 | 默认值 | | :-----------------: | :---------: | :------------------------------- | :------------------------------------------ | | enable | {Boolean} | 是否开启插件 | 默认值: false | | acceptType | {Array} | 文件类型 | 默认值: ['vue', 'js', 'jsx', 'tsx', 'ts'] | | ignoreModules | {Array} | 需要被忽略的 node_module 名称 | 默认值: ['vue', 'vue-router'] | | outputType | {String} | 输出方式, 支持 json markdown | 默认值: 'json' |

SafeDeleteFile

用于分析项目中有哪些文件没有被使用,也许可以安全删除。

在老项目不停的迭代,有些代码或文件也许早已没有作用,但开发者不知道哪些文件可以安全删除。那么你可以试试这个插件!

options

| 名称 | 类型 | 描述 | 默认值 | | :--------------: | :------------------: | :------------------------------- | :--------------------------- | | enable | {Boolean} | 是否开启插件 | 默认值: false | | folderPath | {String} | 文件路径 | 默认值: cli执行目录下src | | ignore | {String} {Array} | 需要被忽略文件夹或文件 | 默认值: [] | | outputType | {String} | 输出方式, 支持 json markdown | 默认值: 'json' |

Plugins 使用案例

SafeDeleteFile ModulesAnalysis

cd sample/use-work-webpack-plugins

npm i && npm run build

构建后会生成 modulesAnalysis.jsonsafeDeleteFile.json 两个文件

// safeDeleteFile.json
[
  '/src/assets/aleksandr-popov-Hkrp734cElQ-unsplash.jpg',
  '/src/assets/devon-hawkins-YW_xD_j50UI-unsplash.jpg',
  '/src/assets/neom-JZerhwPHiBI-unsplash.jpg',
  '/src/components/CustomModal.vue',
  '/src/not-use.js'
];
// modulesAnalysis.json
[
  ({ name: 'axios', total: 1, files: [{ filePath: '/src/components/HelloWorld.vue', useType: 'import' }] },
  { name: 'dayjs', total: 1, files: [{ filePath: '/src/components/HelloWorld.vue', useType: 'require' }] },
  { name: 'ant-design-vue', total: 1, files: [{ filePath: '/src/main.js', useType: 'require' }] })
];