2.0.0 • Published 8 months ago
virtual-resource-loader v2.0.0
virtual-resource-loader
virtual-resource-loader
allows you to create new modules inside a webpack compilation, without a file existing on disk. This is achieved in combination with webpack's matchResource feature.
Usage
// example-loader.js
export default function exampleLoader() {
const virtualModuleSourceCode = '...';
const base64Source = Buffer.from(
JSON.stringify(virtualModuleSourceCode),
'utf-8'
).toString('base64');
const request = `./my-virtual-file!=!virtual-resource-loader?source=${base64Source}!${loader.resourcePath}`;
return `
import ${request};
`;
}
2.0.0
8 months ago
1.0.1
2 years ago
0.0.0-tags-support-20231724743
2 years ago
0.0.0-tags-support-2023185232
2 years ago
0.0.0-package-files-20231142931
2 years ago
0.0.0-tags-support-2023174816
2 years ago
1.0.0
4 years ago