Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
rollup-plugin-fill-html
Advanced tools
Fill the html template with the bundle js..
Rollup >= 0.48 has been supported since v1.0.6. So if you use rollup < 0.48, please choose the older version.
The 1.0.3 version has supported to insert css file and external url, you should know that rollup-plugin-fill-html will scan the dest directory and find out all the js and css files
, and then insert these files into the result html. So you'd better to clean the dest directory before rebuilding, and I think you may need this .
yarn add --dev rollup-plugin-fill-html
or
npm install -D rollup-plugin-fill-html
In the rollup.config.js:
import html from 'rollup-plugin-fill-html';
export default {
entry: 'src/index.js',
dest: 'dist/bundle.js',
plugins: [
html({
template: 'src/index.html',
filename: 'index.html'
})
]
};
and then a index.html file will be created in the dest directory(where the bundle file will be).
With rollup-plugin-fill-html
, you can set a format string which with '[hash]' for the dest in rollup.config.js, just like:
export default {
entry: 'src/index.js',
dest: 'dist/bundle-[hash].js',
plugins: [
...
]
};
and then, you will get bundle-a3965c0c77a63d7c74b57222e2f74028.js
in your dist directory.
Since v1.0.3, rollup-plugin-fill-html
has supported to include external files. You can set an externals
option to list your files which you want to include.
You can pass an option to the html()
just like above, and there are some options:
<head>
and the js files will be inserted into <body>
.demo:
// rollup.config.js
import html from 'rollup-plugin-fill-html';
export default {
entry: 'src/index.js',
dest: 'dist/bundle.js',,
plugins: [
html({
template: 'src/index.html',
filename: 'index.html',
externals: [
// the type can be 'js' or 'css',
// and you can pass a pos field to control the the position in which the file will be inserted.
// the xxxx1.js will be inserted before the bundle,
// and the xxxx2.js will be inserted after the bundle as default
// you can set an `inject` field here to cover the outer `inject`
{ type: 'js', file: '//xxxx1.js', pos: 'before' },
{ type: 'js', file: '//xxxx2.js' }
]
})
]
};
then the dist/bundle.js
will be inserted into the result file.
MIT
FAQs
fill html with the bundle file
The npm package rollup-plugin-fill-html receives a total of 5 weekly downloads. As such, rollup-plugin-fill-html popularity was classified as not popular.
We found that rollup-plugin-fill-html demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.