rspack-plugin-virtual-module
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

rspack-plugin-virtual-module

An Rspack plugin that allows you to create virtual modules.

npm version license

Installation

# npm
npm install rspack-plugin-virtual-module

# yarn
yarn add rspack-plugin-virtual-module

# pnpm
pnpm add rspack-plugin-virtual-module

Usage

// rspack.config.js
const { RspackVirtualModulePlugin } = require("rspack-plugin-virtual-module");

module.exports = {
  plugins: [
    new RspackVirtualModulePlugin({
      contents: 'export default "Hello World";',
    }),
  ],
};

Then you can import the virtual module in your code:

import hello from "contents";

console.log(hello); // "Hello World"

If you want to dynamically write the contents of the virtual module, you can use the writeModule method:

// rspack.config.js
const { RspackVirtualModulePlugin } = require("rspack-plugin-virtual-module");

const vmp = new RspackVirtualModulePlugin({
  contents: 'export default "Hello World";',
});

// Write the contents of the virtual module after 1 second
setTimeout(() => {
  vmp.writeModule('export default "Hello World 2";');
}, 1000);

module.exports = {
  plugins: [vmp],
};

License

MIT.

Readme

Keywords

none

Package Sidebar

Install

npm i rspack-plugin-virtual-module

Weekly Downloads

14,031

Version

1.0.1

License

MIT

Unpacked Size

16.6 kB

Total Files

6

Last publish

Collaborators

  • chenjiahan
  • sanyuan0704