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

rollup-plugin-unbundled-reexport

v0.2.0

Published

A Rollup plugin that reexports unbundled modules.

Downloads

76

Readme

Rollup plugin unbundled reexport

import { a } from './utils/a'
import { b } from './utils/b'
import { c } from './utils/c'
import { d } from './utils/d'
import { e } from './utils/e'
import { f } from './utils/f'
import { g } from './utils/g'

还在像上面这样写?算了吧,试试这个插件吧!

import { a, b, c, d, e, f, g } from './utils' with { 'unbundled-reexport': 'on' }

为什么

在 HMR 的使用场景下,我们可能会因为将几个文件的内容合并到一起后重新导出的时候,导致 Rollup 无法正确地识别这个文件的依赖关系,从而导致 HMR 无法正常工作。

所以部分人可能会选择不会将这几个文件的内容合并到一起,而是直接使用这几个文件的路径来导入,从而防止模块依赖关系的混淆。

举一个例子来说:

  • utils/foo.js
export declare function foo(): void;
  • utils/bar.js
export declare function bar(): void;
  • utils/index.js
export { foo } from './foo';
export { bar } from './bar';
  • a.js
import { foo } from './utils';
  • b.js
import { bar } from './utils';

在这个例子中,我们可以看到 a.js 和 b.js 都是直接导入了 utils 这个目录重新导出的捆绑文件,而不是直接导入 foo 和 bar 这两个文件。

现在我们来设想一下如果我们对 utils/foo.js 进行了修改会怎么样?很明显,由于 a.js 和 b.js 都是直接导入了 utils 这个目录重新导出的捆绑文件,所以这俩个文件都会进行热更新,这好吗?显然不好。

安装

npm install --save-dev rollup-plugin-unbundled-reexport
# pnpm
pnpm add -D rollup-plugin-unbundled-reexport
# yarn
yarn add -D rollup-plugin-unbundled-reexport

使用

一般也只有 vite 才有可能用上,但是如果你的任何一个系统具备 hmr,或许也可以试试。

加载插件

  • vite
import unbundledReexport from 'rollup-plugin-unbundled-reexport';

export default {
  plugins: [
    unbundledReexport(),
  ],
};
  • rollup
import unbundledReexport from 'rollup-plugin-unbundled-reexport';

export default {
  input: 'src/index.js',
  output: {
    file: 'dist/index.js',
    format: 'esm',
  },
  plugins: [
    unbundledReexport(),
  ],
};

进行切割

在这里我们可以使用 Import Attributes 来触发插件的功能。

import { a, b, c, d, e, f, g } from './utils' with { 'unbundled-reexport': 'on' }

暂时不支持 export * from ''(等我需要了再来加,稍微有点麻烦)。

  • ./utils/index.js
export { a } from './a';
export { b, c, d } from './bcd';
export { e } from './e';
export { f, g } from './fg';

你也可以用配置,不用 with 语法,写法在类型文件里有,这里就懒得写了😁。

License

MIT

最后

玩的开心!